cell to matrix when loading
Mostra commenti meno recenti
The matlab file I am trying to load is a '1x1 cell' that opens to a '77x1 double' when loading it how do I skip the cell and go to the matrix immediately?
Risposte (1)
Fangjun Jiang
il 21 Nov 2017
0 voti
d1={rand(77,1)};
d1{1}(50)
d2=d1{1}
d2(50)
Categorie
Scopri di più su Resizing and Reshaping Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!