how to make a file .mat as a function input and load it inside the function
16 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
rachida
le 21 Juil 2019
Commenté : Walter Roberson
le 21 Juil 2019
Hey everyone
I am developping a function and i need a A.mat as an infile input of the function B , inside the function i hav to do file load , and to say that the function and the A.mat are in the same directory. so the alogorithme would be like thise
function B(filemat)
load filemat
thank you
0 commentaires
Réponse acceptée
Walter Roberson
le 21 Juil 2019
Modifié(e) : Walter Roberson
le 21 Juil 2019
data = load(filemat);
Now the variables you need will each be fieldnames of the struct data
2 commentaires
Walter Roberson
le 21 Juil 2019
You were using
load filemat
which is equivalent to
load('filemat')
which ignores the content of the variable named filemat and instead tries to load something literally named filemat.mat
My suggested code uses the content of the variable named filemat to see where it should load
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrix Indexing 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!