Create row with text from loop for a table
2 ビュー (過去 30 日間)
古いコメントを表示
I want to create a table with a row like this:
[Bar No.1; Bar No.2 ... Bar No.n]
I tried it with:
%N = 4x6;
capa = zeros(size(N,1),1);
i=1;
while i<= size(N,1)
capa(i) = sprintf('Capa #%d',i);
i=i+1;
end
I tried also with fprintf, but it doesn't work.
My table has other information which I want to add this column as first:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/294202/image.png)
0 件のコメント
採用された回答
Stijn Haenen
2020 年 5 月 19 日
you can create table headers with:
a=table();
for i=1:10;
a.(sprintf('bar %g',i))=i;
end
3 件のコメント
Stijn Haenen
2020 年 5 月 19 日
N=4;
a=table();
for i=1:10;
a.(sprintf('bar %g',i))=zeros(N,1);
end
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!