photo

Alexander Venus


Last seen: quasi 3 anni fa Attivo dal 2019

Followers: 0   Following: 0

Statistica

  • First Review
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
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

oltre 5 anni fa | 3

Risposto
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 ...

oltre 5 anni fa | 1