photo

Alexander Venus


Last seen: casi 3 años hace Con actividad desde 2019

Followers: 0   Following: 0

Estadística

  • First Review
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
How can I save the matlab workspace in a structure?
w = whos; for a = 1:length(w) str.(w(a).name) = eval(w(a).name); end

más de 5 años hace | 3

Respondida
how to sort the elements of 2D matrix and understand their initial column and rows of each elements?
this can also be accomplished more intuitive by using ind2sub: >> a = [7,10,6;8,6,11] a = 7 10 6 8 ...

más de 5 años hace | 1