How can I reset the tic/toc timer?

조회 수: 11 (최근 30일)
Alexius Wadell
Alexius Wadell 2017년 4월 5일
답변: Steven Lord 2017년 4월 5일
How can I clear everything from the MATLAB workspace? clear all/classes/java does a pretty good job but it doesn't reset the tic/toc commands.
What I want is:
tic
commandThatClearsEveryting
toc %Throws error
More generically: How can I run a test script such that the code is effectively run in a newly opened MATLAB workspace?

채택된 답변

Jan
Jan 2017년 4월 5일
편집: Jan 2017년 4월 5일
Do not run it as if, but simply run is in a newly opened Matlab session:
system('matlab -r YourFunction');

추가 답변 (1개)

Steven Lord
Steven Lord 2017년 4월 5일
I'm not sure what you mean by resetting the tic and toc timer, but if you want to time code that may itself contain call to tic or toc, call tic with an output and pass that output into toc.
sumLoop = 0;
timeOverall = tic;
for k = 10:10:500
M = magic(k);
timeLoop = tic;
V = eig(M);
TL = toc(timeLoop);
sumLoop = sumLoop + TL;
fprintf('Calling EIG for a %d by %d matrix took %f seconds.\n', k, k, TL);
end
fprintf('The entire loop took %f seconds.\n', toc(timeOverall));
fprintf('Cumulative sum of loop timing is %f seconds.\n', sumLoop);
The timing data in the messages displayed by the last two lines should be very close to one another. They won't be identical, since the timing of the inner fprintf call is not included in sumLoop, but they should be reasonably close.

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by