Borrar filtros
Borrar filtros

What does ''Busy'' signify ?

20 visualizaciones (últimos 30 días)
IPlover
IPlover el 20 de Nov. de 2013
Comentada: Walter Roberson el 3 de Mayo de 2017
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 ?

Respuestas (3)

Azzi Abdelmalek
Azzi Abdelmalek el 20 de Nov. de 2013
Editada: Azzi Abdelmalek el 20 de Nov. de 2013
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 el 20 de Nov. de 2013
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 el 3 de Mayo de 2017
Editada: Walter Roberson el 3 de Mayo de 2017
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 comentarios
Jan
Jan el 3 de Mayo de 2017
Please open a new thread for a new question. Then explain any details: what exactly is "a long time"?
Walter Roberson
Walter Roberson el 3 de Mayo de 2017
Pre-allocate the output variable
x = zeros(1,10);

Iniciar sesión para comentar.

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by