photo

SL B


Attivo dal 2013

Followers: 0   Following: 0

Messaggio

Statistica

  • First Review
  • Knowledgeable Level 1
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
how to rename variables using script/code vs doing it manually
Instead of having so many variables why don't you store them in a matrix? A = [ax, ay, az; ax_sub1, ay_sub1, az_sub1...

circa 11 anni fa | 0

Risposto
How to work on "for loop" to save different column variable values to single vector?
Why loop when you can just put it in a matrix? You are saying that Ed1 = [51.6149 27.1981 13.2580 2.3396] (this would be a row,...

circa 11 anni fa | 1

| accettato

Risposto
How do I turn a number array into a specific string set?
array_cell = num2str(array) I think is the problem. Try using the num2str within the for loop. for i=1:size(array,2) ...

circa 11 anni fa | 0

| accettato