----------
In follwing code how can I store all the values (1-100) of "mean" varialbe in its tabular file(excel type of file, varialbe file). Now by defalt only last value is stored. I am also attaching the screen shot of varialbe file. I also want to plot the graph of that mean, but that is additional task.
----------
for i=1:1:100
Rep_veh=rand(1)
Rep_veh1=rand(1)
Rep_veh2=rand(1)
mean=(Rep_veh+Rep_veh1+Rep_veh2)/3
if mean>0.5
disp('report is trusted')
elseif mean<=0.5
disp('report is not trusted')
end
end

댓글 수: 1

Stephen23
Stephen23 2020년 7월 8일
How to use loops and store their oututs is explained in the introdcutory tutorials:
It also introduces simpler, vectorized approaches to your problem.

댓글을 달려면 로그인하십시오.

 채택된 답변

madhan ravi
madhan ravi 2020년 7월 8일

0 개 추천

Rep_veh = rand(100,1);
Rep_veh1 = rand(100,1);
Rep_veh2 = rand(100,1);
MEAN =(Rep_veh+Rep_veh1+Rep_veh2)/3;
c = {'report is trusted', 'report is not trusted'};
M = c((MEAN <= 0.5) + 1)
doc for

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2020년 7월 8일

댓글:

2020년 7월 8일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by