using cell to add row
2 ビュー (過去 30 日間)
古いコメントを表示
xxx={'Lavorato assieme n. giorni',' ',1;'Giorno Positivi e negativi ',' ',2}
if i want to add ("Lavorato xxx',' ',3) in this 3x3 cell how can i write code?
0 件のコメント
採用された回答
Stephen23
2023 年 11 月 10 日
xxx = {'Lavorato assieme n. giorni',' ',1;'Giorno Positivi e negativi ',' ',2}
xxx(3,:) = {'Lavorato xxx',' ',3}
0 件のコメント
その他の回答 (1 件)
Mann Baidi
2023 年 11 月 10 日
Hi,
I understand you would like to add rows to your cell at the end.
You can do this using the following code:
xxx={'Lavorato assieme n. giorni',' ',1;'Giorno Positivi e negativi ',' ',2}
xxx=[xxx;{'Lavorato xxx',' ',3}]
Hope this helps!
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!