Question


how matrix know its place of values
If A=[1 2 3 4 5; 6 7 8 9 10; 11 12 13 14 15] how matrix A knows that A1=1,A2=6,A3=11,A1=2,A2=7,A3=12 and so on.

8 years ago | 1 answer | 0

1

answer

Question


could anyone help me to solve the issue
Bmax=20; noise=10; A = [2 3 0 0 5; 5 6 0 0 4; 1 9 0 0 3] B = [1 5 0 0 6; 4 3 0 0 2; ...

8 years ago | 1 answer | 0

1

answer

Question


Could anyone help me to write the attached equation in matlab
Could anyone help me to write the attached equation in matlab

8 years ago | 2 answers | 0

2

answers

Question


Could anyone help me how to write the equation in matlab for the attached image
Could anyone help me how to write the equation in matlab for the attached image. <<https://www.mathworks.com/matlabcentral/an...

8 years ago | 1 answer | 0

1

answer

Question


could anyone help me to solve the error in the following code
N_UE=6 N_SC=16 iwant = cell(length(N_UE),1) for t= 1:length(N_UE) for r= 1:length(N_SC) G=rand(N_UE(t),N_SC(r...

8 years ago | 1 answer | 0

1

answer

Question


could anybody help me to write the condition with respect to the command line
n=50 unused_rows=1:n n_rows=ceil(sqrt(randi(numel(unused_rows)))) When I run the code I am getting 1 or 2 or 3. Bu...

8 years ago | 1 answer | 0

1

answer

Question


how to find the transpose
could anyone help me for the code for i=1:10 i x(i)=i end how to display i values in the transpose manner

8 years ago | 2 answers | 0

2

answers

Question


Could anyone help me to solve the issue "rows can be more than one but it should not be one"
I would like to check with respect to the command line rows=unused_rows(randsample(length(unused_rows),n_rows)) which displays h...

8 years ago | 0 answers | 0

0

answers

Question


What does [~,idx] mean
In my coding i am using the command [~,idx]=find(ismember(unused_rows,rows)) to represent the rows when the code executes if r...

8 years ago | 0 answers | 0

0

answers

Question


how to view the overwritten result in the workspace for the command in the for loop
could anyone tell me how to view the overwritten result for every run in the workspace as only the last result of the run is get...

8 years ago | 1 answer | 0

1

answer

Question


Could anyone clarify my doubt with respect to the following code
N_UE=10 unused_rows=1:N_UE while ~isempty(unused_rows) N_UE_rows=ceil(sqrt(randi(numel(unused_rows)))) rows=unused...

8 years ago | 2 answers | 0

2

answers

Question


Could anyone help me to run with the following code
Could anyone help me to run with the following code m=[2 4 6 8 10] n=[12 14 16 18 20] for t=1:length(m) for r=1:le...

8 years ago | 0 answers | 0

0

answers

Question


how to combine the commands
Can anyone help me how to execute the below code with the command executes once instead of repeating two times. clear all; ...

8 years ago | 0 answers | 0

0

answers

Question


how to combinetwo matrix (2,5) and (3,5) together
how to combine two matrix (2,5) and (3,5) together

8 years ago | 1 answer | 0

1

answer

Question


Could anyone help me to solve the error
clear all; clc; A=[ 1 2 3 4 5; 11 12 13 14 15; 6 7 8 9 10; 21 22 23 24 25; 26 27 28 29 30] ...

8 years ago | 0 answers | 0

0

answers

Question


Could anyone help me to fix the issue
The following code1 and code 2 executes separately. code 1: clear all; clc; A=[ 1 2 3 4 5; 11 12 13 14 15; ...

8 years ago | 1 answer | 0

1

answer

Question


select 2 rows in a (n,m) matrix
what command can be used to select 2 rows in a matrix(10,10),3 rows in a matrix(10,10),4 rows in a matrix (10,10)

8 years ago | 2 answers | 0

2

answers

Question


how to change the value of X in repmat
I am using repmat(non_0,x,1) in the for loop so each and every time the value of x needs to be changed. could anyone tell m...

8 years ago | 2 answers | 0

2

answers

Question


how to get rid of the error
clear all; clc; A=[ 1 2 3 4 5; 11 12 13 14 15; 6 7 8 9 10; 21 22 23 24 25; 26 27 28 29 ...

8 years ago | 0 answers | 0

0

answers

Question


could anyone help me how to write the rule to code
If A = [1 2 3 4 5; 11 12 13 14 15; 6 7 8 9 10; ...

8 years ago | 0 answers | 0

0

answers

Question


How to avoid the rows not to get repeated again
If the run the following code it works. M=rand(14); for N=2:5 c=randperm(length(M),N) B=M(c,:) % output...

8 years ago | 1 answer | 0

1

answer

Question


If there are 1000 rows in a matrix how to select rows in a random manner such that the selected rows form a group.
If there are 1000 rows in a matrix how to select rows in a random manner such that the selected rows form a group.

8 years ago | 1 answer | 0

1

answer

Question


throughput calculation with respect to matrix
If C=[0 0 41 4 0; 45 12 0 0 15; 6 43 0 0 10; 0 0 23 ...

8 years ago | 0 answers | 0

0

answers

Question


sharing of rows in a random manner
If A = 1 2 3 4 5 11 12 13 14 15 6 7 8 9 10 21 ...

8 years ago | 2 answers | 0

2

answers

Question


Could anyone tell me how to execute the following code
N_UE=[2 4 6 8 10]; for t= 1:length(N_UE) numGroups = 5; divisions = sort(randperm(t, numGroups) , 'ascend') divis...

8 years ago | 2 answers | 0

2

answers

Question


clustering of rows in random manner
If I have a matrix of 50 rows and 100 columns how clustering of 50 rows can be done in a random manner such that the rows presen...

8 years ago | 1 answer | 0

1

answer

Question


Clustering of (n*m) matrix.
Can anyone help me how to cluster rows in a random manner for the following matrix C = 0 0 46.077...

8 years ago | 2 answers | 0

2

answers

Question


how to make graph for cdfplot
I am unable to get the graph for the code.Pls help me to solve this. y = rand(2,2) figure; cdfplot(y) hold on

9 years ago | 0 answers | 0

0

answers

Question


plotting the graph for (5*5) matrix
could anyone tell me how to plot the graph for the image attached with respect to values given.

9 years ago | 1 answer | 0

1

answer

Question


graph plot with respect to scenarios
if A=[10 20 30 40];no of users B=[50 60 70 80];no of subcarriers throughput=6000 how can i plot the graph of A=[10 20 30 40] ...

9 years ago | 0 answers | 0

0

answers

Load more