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!