Converting Cell matrix to a Numeric Matrix
2 ビュー (過去 30 日間)
古いコメントを表示
I have a cell matrix as shoown below.
B={'2' '3' '5'; '4' '7' '2'; '7' '5' '2'}
B =
3×3 cell array
{'2'} {'3'} {'5'}
{'4'} {'7'} {'2'}
{'7'} {'5'} {'2'}
I want to convert it a numeric matrix like as follows:
A =
2 3 5
4 7 2
7 5 2
0 件のコメント
採用された回答
Stephan
2021 年 5 月 12 日
編集済み: Stephan
2021 年 5 月 12 日
B={'2' '3' '5'; '4' '7' '2'; '7' '5' '2'}
C = cellfun(@(x)str2double(x),B)
3 件のコメント
Stephen23
2021 年 5 月 12 日
Or, by simply reading the str2double documentation, you can easily have much much more efficient code:
B = {'2','3','5';'4','7','2';'7','5','2'};
M = str2double(B)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!