Monday, 18 August 2014

Closing all scilab figures with one command

I observed that to close all figure windows in scilab, we can't use
>> close all
like in MATLAB.
After looking around, got the equivalent command in scilab. It is,
>> xdel(winsid())

peace.

6 comments:

  1. This comment has been removed by the author.

    ReplyDelete
  2. This was a big problem. Thank you very much.

    ReplyDelete
  3. wow, cool, thanks!!
    And is there also a hint how to calculate the cross product of arrays A and B along dimensions? Unfortunately, Scilab doesn't have the cross(A,B,dim) command. So, calculating the cross products of the vectors stored in A and B along 3rd dimension is really hard work..
    But I'm pretty sure that there IS the possibility in Scilab, just a little more nerdy than in MATLAB...

    ReplyDelete