how to remove the zero from the first column and last row (4,1) to make it empty. it change my all values by subtracting.
3 ビュー (過去 30 日間)
古いコメントを表示
s=[1;2;3];
s(1:4,2)=[1;2;3;4]
s =
1 1
2 2
3 3
0 4
0 件のコメント
採用された回答
Bhaskar R
2019 年 10 月 28 日
Not specified what subtraction operation here.
And you can't remove zero and put empty here this lead to non structure of the matrix. But you there are otherways to do that use cell array notations.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Multidimensional Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!