how to find the standard deviation of one file which i want to run it for 100 times.
1 次查看(过去 30 天)
显示 更早的评论
Hello everyone i have a one file in matlab which show me the shortest path and shortest time,how can write another matlab file and ask run the previous matlab file for 100 time and fine standard of deviation of time and standard deviation of path of it?
thank you
0 个评论
回答(1 个)
Konstantinos Sofos
2015-5-17
编辑:per isakson
2015-5-17
Hi,
Assuming your function is the "PathGen" (because you haven't posted or uploaded anything) with 2 outputs
[Path,Time]=PathGen(varargin)
a solution would be
% Script to run 100 times PathGen with some stats
%
N = 100;
AllTimes = []; % Initialize
AllPaths = []; % Initialize
for n = 1:N
[Path,Time]=PathGen(varargin);
AllPaths = [AllPaths Path] % This will be a matrix size(Path) x N
AllTimes = [AllTimes Time] % This will be a vector 1xN
end
%%Std
Timestd = std(AllTimes );
stdPath= std(AllPaths,0,2); % This will be a vector 1xN
plot(stdPath);
Pathstd = std(stdPath);
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!