photo

SL B


Active since 2013

Followers: 0   Following: 0

Message

Statistics

  • First Review
  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

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

11 years ago | 0

Answered
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,...

11 years ago | 1

| accepted

Answered
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) ...

11 years ago | 0

| accepted