Converting Cell matrix to a Numeric Matrix
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Stephan
il 12 Mag 2021
Modificato: Stephan
il 12 Mag 2021
B={'2' '3' '5'; '4' '7' '2'; '7' '5' '2'}
C = cellfun(@(x)str2double(x),B)
3 Commenti
Stephen23
il 12 Mag 2021
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)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!