Question


could anyone help me to fix the issue.
I am running the o_th with respect to 4 iterations and i am getting the result as follows. iteration-1 o_th(:,:,1) = ...

6 years ago | 1 answer | 0

1

answer

Question


could anyone help me how to run the line without using randsample
could anyone help me how to run the line without using randsample rows=unused_rows(randsample(length(unused_rows),N_UE_rows))

6 years ago | 2 answers | 0

2

answers

Question


could anyone help me how to fix the numbers when the code runs for more than one iterations
For the following command line rows=unused_rows(randsample(length(unused_rows),N_UE_rows)), when i run the code the num...

6 years ago | 0 answers | 0

0

answers

Question


could anyone help me how to arrange the following result in descending order as i am getting error
Result: o_th(:,:,1) = [0] o_th(:,:,2) = [4.1615e+07] o_th(:,:,3) = [5.5254e+07] o_th(:,:,4) = ...

6 years ago | 1 answer | 0

1

answer

Question


could anyone tell me how to overcome the error Undefined function 'max' for input arguments of type 'cell'.
could anyone tell me how to overcome the error Undefined function 'max' for input arguments of type 'cell' with respect to the c...

6 years ago | 0 answers | 1

0

answers

Question


Could anyone help me to solve the following issue.
I want to calculate the throughput using the following expression for v =1:size(B,2) for u =1:size(A,1) thr...

6 years ago | 1 answer | 0

1

answer

Question


could anyone help me to solve the issue for the following code:
code: C=100; A=10; B=40; A=20; B=30; A=30; B=20; A=50; B=10; A=60; B=45; D...

6 years ago | 1 answer | 0

1

answer

Question


could anyone tell me how to select one biggest number among all the numbers.
could anyone tell me how to select one biggest number among all the numbers.

6 years ago | 1 answer | 0

1

answer

Question


could anyone tell me how to select the largest number among all the numbers.
could anyone tell me how to select the largest number among all the numbers. for example if i am having (2,6,9,5,1) then how ca...

6 years ago | 1 answer | 0

1

answer

Question


could anyone help me to find the solution for the issue
could anyone help me to solve the issue for the following code: G_part=[5 9 0 0 5; 2 6 0 0 4] G_part=[0 0 4 2 0...

6 years ago | 1 answer | 0

1

answer

Question


could anyone tell me how to store the result of each iteration in an array for the following code
code: t=4; r=6; for it=1:4 output(t,r)=overall_throughput; output_it(t,r,it)=output(t,r); end

6 years ago | 1 answer | 0

1

answer

Question


could anyone tell me how to get the iterations with different values in the code where rng is used
I am calculating the throughput using different values of rng. After calculating the throughput i want to run the code with resp...

6 years ago | 1 answer | 0

1

answer

Question


Could anyone help me how to calculate the throughput and run the following throughput with respect to different iterations
I have calculated the overall_throughput and run it with respect to different iterations with respect to t and r where t=4 and ...

6 years ago | 0 answers | 0

0

answers

Question


how to omit zero values while plotting the graph
could anyone tell me how to omit zero values while plotting the graph.

6 years ago | 1 answer | 0

1

answer

Question


Could anyone tell me how to omit zero values while plotting the graph
The values of A and B are generated using the code. A= 1.8380 2.0014 1.8425 2.0771 ...

6 years ago | 1 answer | 0

1

answer

Question


could anyone help me to plot the graph for the result shown below.
result: output1(:,:,1) =1.0e+10 * 1.8380 1.9754 output1(:,:,2) =1.0e+10 * 2.0014 2.1991 output1(:,:,3) =1...

6 years ago | 1 answer | 0

1

answer

Question


could anyone help me how to plot the overwritten values.
I am getting the following result when i run the code with respect to [1,2,3],[4,5,6,7] Below results are for rng = 1 ou...

6 years ago | 0 answers | 0

0

answers

Question


how to extract the overwritten values inorder to plot the graph
Could anyone tell me how to extract the overwritten values to plot the graph.

6 years ago | 1 answer | 0

1

answer

Question


could anyone help me to fix the issue for the following code.
for t= 1:length(N_UE) list_of_N_rng={[1,2,3,4],[5,6,7,8,9]}; for seed_idx = 1 : length(list_of_N_rng) N_rng=list_of_N...

6 years ago | 0 answers | 0

0

answers

Question


could anyone help me to overcome the error in the following code
Code: list_of_rng_seeds = {[12, 2 ,1], [3, 4 ,5 ,6, 7],[8 ,9, 10]} for seed_idx = 1 : length(list_of_rng_seeds) ...

6 years ago | 1 answer | 0

1

answer

Question


can anyone help me to fix the issue
code: v=[1 2 3 4]; v=[5 6 7 8 9]; v=[10 11 12 13 14 15]; for v = [1 2 3 4] disp(v) end In the above code ...

6 years ago | 1 answer | 0

1

answer

Question


could anyone help me to fix the issue
N_rng=[ 1 2 3 4 5 23] N_rng=[6 7 8 9 10 25 26] N_rng=[11 12 13 14 15 16 17] for s=1:length(N_rng) .. .. .. ...

6 years ago | 1 answer | 0

1

answer

Question


how to implement two different scenarios in the same code.
scenario 1: N_rng=[1 2 23] for s=1:length(N_rng) this_seed = N_rng(s); fprintf('Below results are for...

6 years ago | 0 answers | 0

0

answers

Question


could anyone help me how to solve the issue.
code: N_rng=[1 2 23]; dummyX = 1:length(N_rng); figure plot(dummyX,Y,'rs'); hold on;grid on; ax = gca; ax...

6 years ago | 1 answer | 0

1

answer

Question


Could anyone help me to implement the scenarios for the code given
code: for s=1:length(N_rng) this_seed = N_rng; fprintf('Below results are for rng = %d\n', this_seed); rng(this_se...

6 years ago | 0 answers | 0

0

answers

Question


Could anyone help me to solve the issue for the following code
Code: Bmax=2000; noise=1e-5; p_fix=0.05; for it=1:2 G =[4.2638 4.2227 4.2658 4.4176 4.6851 5....

6 years ago | 0 answers | 0

0

answers

Question


could anyone help me to plot the graph with equal spacing of number with respect to x axis
I want to plot the graph with respect to x axis using the following (1,12,25,100,120). In the graph i should get only these 5 n...

6 years ago | 1 answer | 0

1

answer

Question


could anyone tell me how to have equal spacing of selected numbers with respect to axis.
could anyone tell me how to have equal spacing of selected numbers with respect to axis with respect to the command line s...

6 years ago | 3 answers | 0

3

answers

Question


Could anyone help me to plot the graph.
I am using the following lines in my code to plot the graph. code: xlim([0,25]); set(gca,'XTick',[0:1:25]); with res...

6 years ago | 1 answer | 0

1

answer

Question


Could anybody help to solve the issue.
I want to plot the graph for the command line plot(rng,final1,'-rs'); when i run the code the values of rng and fin...

6 years ago | 1 answer | 0

1

answer

Load more