What does ''Busy'' signify ?
18 ビュー (過去 30 日間)
古いコメントを表示
Now, Here is a long code which i am directly pasting it into command window and its taking a lot of time to show the output. It is showing "Busy" on the left bottom corner. What does it mean ? Is there any problem or error in the code ? Will i get my output if i wait ?
0 件のコメント
回答 (3 件)
Azzi Abdelmalek
2013 年 11 月 20 日
編集済み: Azzi Abdelmalek
2013 年 11 月 20 日
Busy means the computer is busy executing your code, which takes a certain time to finish Will you get the result if you wait? not sure, that depends on what your code is doing
0 件のコメント
E. Bisson
2013 年 11 月 20 日
If you are executing an infinite loop it will take forever. Try to execute your code in successive fragments in order to figure out which part is performing so much computation.
0 件のコメント
Noor elhamed
2017 年 5 月 3 日
編集済み: Walter Roberson
2017 年 5 月 3 日
for example, this was my code:
for j=1:10
x(j)=5*j;
end
why does it take a long time? it's so simple.
2 件のコメント
Jan
2017 年 5 月 3 日
Please open a new thread for a new question. Then explain any details: what exactly is "a long time"?
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!