Feeds
답변 있음
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...
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년 초과 전 | 0
답변 있음
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,...
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년 초과 전 | 1
| 수락됨
답변 있음
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) ...
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년 초과 전 | 0
| 수락됨