Vary numbers i a textline
2 ビュー (過去 30 日間)
古いコメントを表示
Hi! I'm trying to write a for-loop that vary numbers in the following code
z(1,:)=TC_Front_1.signals.values;
z(2,:)=TC_Front_2.signals.values;
z(3,:)=TC_Front_3.signals.values;
z(4,:)=TC_Front_4.signals.values;
...
z(n,:)=TC_Front_n.signals.values;
My questions is:
- How do I do when I want to search for the first part 'TC_Front_' so I can se how many there is
- How do I write to vary the numbers, like in a for-loop with indexes?
Johan
3 件のコメント
採用された回答
Andrei Bobrov
2012 年 6 月 4 日
for jj = 1:n
z(jj,:) = eval(['TC_Front_',num2str(jj),'.signals.values']);
end
0 件のコメント
その他の回答 (1 件)
Walter Roberson
2012 年 6 月 4 日
If the values are coming from a .mat file then use the form of load() that assigns the inputs to a structure; then you can use dynamic field names.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!