필터 지우기
필터 지우기

What does ''Busy'' signify ?

조회 수: 20 (최근 30일)
IPlover
IPlover 2013년 11월 20일
댓글: Walter Roberson 2017년 5월 3일
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 ?

답변 (3개)

Azzi Abdelmalek
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

E. Bisson
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.

Noor elhamed
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
Jan 2017년 5월 3일
Please open a new thread for a new question. Then explain any details: what exactly is "a long time"?
Walter Roberson
Walter Roberson 2017년 5월 3일
Pre-allocate the output variable
x = zeros(1,10);

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by