How to convert first cell value into zero
1 回表示 (過去 30 日間)
古いコメントを表示
Hello
I have a array of numbers but the first cell is always a string like below. Is there way that I put ''0" instead of "theta\phi[rad]"? Then, I can do analysis :)
theta\phi[rad] 0 0.01 0.02
0 -0.15 -0.17 -0.14
0.2 0.19 -0.13 -0.11
0 件のコメント
採用された回答
madhan ravi
2020 年 9 月 25 日
編集済み: madhan ravi
2020 年 9 月 25 日
cell_array(cellfun(@isstring, cell_array)) = {0}
7 件のコメント
madhan ravi
2020 年 9 月 25 日
Obviously, the example you showed in your code and your last comment don’t contain the same data.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!