How to convert cell to matrix
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Shahar ben ezra
le 2 Mar 2021
Commenté : Shahar ben ezra
le 2 Mar 2021
hi
How to convert cell to matrix in this situation
t= readtable('loopTest');
for i=1:3
new_matrix{i}=t(:,i*3);
end
new_matrix=cell2mat(new_matrix) % this is not work:(
new_matrix=mean(new_matrix)
It is important for me to use the readtable function and not readmatrix
If I did this in the readmatrix function I would get a matrix of 16 * 3
This is what I want only with function"readtable"
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/536716/image.png)
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Types dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!