How to convert first cell value into zero
1 view (last 30 days)
Show older comments
Masoud Taleb
on 25 Sep 2020
Commented: Masoud Taleb
on 25 Sep 2020
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 Comments
Accepted Answer
madhan ravi
on 25 Sep 2020
Edited: madhan ravi
on 25 Sep 2020
cell_array(cellfun(@isstring, cell_array)) = {0}
7 Comments
madhan ravi
on 25 Sep 2020
Obviously, the example you showed in your code and your last comment don’t contain the same data.
More Answers (0)
See Also
Categories
Find more on Data Type Conversion in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!