フィルターのクリア

manage time computing

1 回表示 (過去 30 日間)
Steven
Steven 2011 年 12 月 20 日
Hi,
I would like to manage the computing time of a function. For example :
function y = myfun(x)
y = something_long_to_calculate(x);
return
and I would like my main code to do something like:
lim = 5; %time limit in sec
x = 0;
tic;
while toc<lim
y = myfun(x);
end
Obviously, I wouldn't work, the point is how could you limited the time of calculation. In this case, if y should have been a vector 100x1 and the program would just have had time to compute the 10 first iterations, how could I still got those values ?
thx

採用された回答

Walter Roberson
Walter Roberson 2011 年 12 月 20 日

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by