Indexing cell array column from excel data
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hey I am trying to make a array using data from excel. I already import the data , the problem is trying to get matlab recognize the colmuns. This is the code:
g=Experimental(:,B)
f=Experimental(:,C:E);
But when i run the code it doesn't recognize the g of the code. This is what I would get:
Unrecognized function or variable 'B'.
Error in l320w40_staticplot (line 13)
g=Experimental(:,B)
Please help!!
0 Commenti
Risposte (1)
Star Strider
il 3 Giu 2022
I do not have the matrices, however if they are already imported, use MATLAB indexing conventions to address them —
g=Experimental(:,2)
f=Experimental(:,3:5);
.
2 Commenti
Star Strider
il 3 Giu 2022
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.
Vedere anche
Categorie
Scopri di più su Matrix Indexing 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!