Pregunta


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.

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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)

más de 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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.

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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.

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 8 años hace | 0 respuestas | 0

0

respuestas

Cargar más