Question


could anyone help me to overcome the error stating RESHAPE the number of elements must not change.
function [ rx_data ] = ofdm_rx( sym_seq, mod_ofdm ) N_data = mod_ofdm.FFTLength - sum(mod_ofdm.NumGuardBandCarriers) - 1 - l...

5 years ago | 1 answer | 0

1

answer

Question


Could anyone help me how to write the legend data in single line
I am using the legend command in my code which states legend('A','B','C','D','E','F','G') When i execute the command it display...

5 years ago | 3 answers | 0

3

answers

Question


how to write the xlabel and ylabel in required type and font
i used the following command xlabel(' users','FontSize',10,'FontType','Times New Roman') ylabel('Throughput','FontSize'...

5 years ago | 1 answer | 0

1

answer

Question


how to add the text only once to the horizontal curve
plot(A,B,'-gs') text(A,B,'curve1') I used the above command but i can see curve1 is repeated more than once on the horizontal ...

5 years ago | 1 answer | 0

1

answer

Question


Could anyone help me how to overcome the error in the following code:
code: marker_dist = 0.2 x = [0 5 10] y = [2 4 1] dist_from_start = cumsum( [0, sqrt((x(2:end)-x(1:end-1)...

5 years ago | 1 answer | 0

1

answer

Question


How do we plot the graph with non available values in x axis.
I am having an array 2-10 3-- 4-20 5-- 6-30 7-- 8-40 When i plot the graph by using the command ...

5 years ago | 1 answer | 0

1

answer

Question


Could anyone help me to solve the issue
i want to plot the x-axis in graph in reverse order iused the following command xlim([34,40]); set(gca,'Xdir','reverse'); w...

5 years ago | 1 answer | 0

1

answer

Question


Could anyone help me to solve the issue in the following code
code: C = partitions([5 7 8 50],~=7); home partdisp(C) when i run the code i am getting error. Actually i wa...

5 years ago | 2 answers | 0

2

answers

Question


could anyone help me to solve the issue
how to remove the partitions which contains {3},{4} and {3 4} in the following partitions of set{1 2 3 4} The 15 partitions of ...

5 years ago | 2 answers | 0

2

answers

Question


Could anyone help me to solve the issue
I am getting the result as follows: The 5 partitions of set {1 2 3}: {1 2 3} {1 2} {3} {1 3} {2} {1} {2 3} {1} {2} {3}...

5 years ago | 0 answers | 0

0

answers

Question


could anyone help me to solve with the issue in the following code:
code: X=[4] for t=1:length(X) A = partitions([X(t)]) for d=1:length(A) take_partition = 1; for e...

5 years ago | 0 answers | 0

0

answers

Question


Could anyone help me to solve the issue
I am having matrix A= [0 2 3 4; 0 8 9 10] B = rand(size(A)) .* (A~= 0) %B is obtained from...

6 years ago | 1 answer | 0

1

answer

Question


Could anyone help me to get the sum of an array to a fixed value
A=[1 2 3 4; 5 6 7 8] how to get the sum of A to be fixed to a value of 20 such that all the values in A needs t...

6 years ago | 3 answers | 0

3

answers

Question


Could anyone help me to overcome the error in the following code
code: X=[3]; for t=1:length(X) A = partitions([X(t)]); for d=1:length(A) for e=1:length(A{d}) if (size(A{d...

6 years ago | 1 answer | 0

1

answer

Question


could anyone help me to solve the issue in the following code
code: X=[3] for t=1:length(X) A = partitions([X(t)]) for d=1:length(A) for e=1:length(A...

6 years ago | 3 answers | 0

3

answers

Question


could anyone help me how to do indexing inorder to get one among 15 partitions.
i am having a total of 15 partitions which gets displayed one by one in the following way The 15 partitions of set {1 2 3 4...

6 years ago | 0 answers | 0

0

answers

Question


could anyone help me how to do index the partition and number of groups present in each partition.
i want to do the indexing for the partitions given below A = {1x1 cell} {1x2 cell} {1x2 cell}...

6 years ago | 0 answers | 0

0

answers

Question


could anyone help me how to split the partition according to the number of groups present in it.
I am having the result displayed as The 5 partitions of set {1 2 3}: {1 2 3} {1 2} {3} {1 3} {2} {1} {2 3} ...

6 years ago | 0 answers | 0

0

answers

Question


Could anyone help me how to split partitions into groups in a separate line
code: user=3; for t = 1:length(user) A = partitions([user(t)]) home; partdisp(A); splitapply(partdis...

6 years ago | 1 answer | 0

1

answer

Question


Could anyone help me how to split the {1x3 cell}
I want to split {1x3 cell} into three groups. Could anyone please help me on this.

6 years ago | 1 answer | 0

1

answer

Question


Could anyone please help me how to group partitions.
code1: user=[3] for t = 1:length(user) A=1:user(t); while ~isempty(A) B=ceil(sqrt(randi([numel(A)]))) C=A(ra...

6 years ago | 1 answer | 0

1

answer

Question


How to convert the data separately from the set bracket
I am posting this question as i didnot get the proper reply so far. code: C = partitions(3) home partdis...

6 years ago | 0 answers | 0

0

answers

Question


could anyone help me how to remove the set bracket present within the numbers .
how to remove the set bracket present within the numbers {1 2 3}.

6 years ago | 0 answers | 0

0

answers

Question


could anyone help me to solve the error in the following code
code: clc; A_mas=1:8 for s=1:numel(A_mas) A=partitions(A_mas,1-s,2) B=0; while ~isempty(A) B= B+1; if ...

6 years ago | 0 answers | 0

0

answers

Question


Could anyone help me to overcome the error.
code: C = partitions(3) home partdisp(C) Y = cell2num(partdisp(C)) If i run the code i am getting error stati...

6 years ago | 1 answer | 0

1

answer

Question


could anyone help me how to split different set of numbers sepaartely
i am having three different sets of numbers displayed in the same line as the output say for example {1} {2 3} {4}.Could anyone...

6 years ago | 2 answers | 0

2

answers

Question


could anyone help me how to solve the issue.
I am getting the output displayed as {1 2 3} {1 2} {3} {1 3} {2} {1} {2 3} {1} {2} {3}. I want to modif...

6 years ago | 0 answers | 0

0

answers

Question


could anyone help me how to partition number into disjoint subnumber in different ways
If i run the command combinat::bell(3) it gives 5. But i want to get the disjoint partition of {{1, 2, 3}}, {{1}, {2, 3}}, {...

6 years ago | 1 answer | 0

1

answer

Question


could anyone help me how to write the bell number equation
Could anyone help me how to write the bell number equation of the attached image.

6 years ago | 0 answers | 0

0

answers

Question


Could anyone help me to solve the error in the following code
code: syms n k n=4 k=0 symsum(nchoosek(n,k),k,0,n) If i run the code it gives error stating Undefined function ...

6 years ago | 2 answers | 0

2

answers

Load more