Frage


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.

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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; ...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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...

mehr als 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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...

mehr als 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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...

mehr als 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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; ...

mehr als 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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] ...

mehr als 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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; ...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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)

mehr als 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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...

mehr als 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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 ...

mehr als 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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; ...

mehr als 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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.

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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 ...

mehr als 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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 ...

mehr als 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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...

mehr als 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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

mehr als 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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.

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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] ...

mehr als 8 Jahre vor | 0 Antworten | 0

0

Antworten

Mehr laden