Error loading .mat files
Afficher commentaires plus anciens
Hi ALL,
I am trying to load the parameters (.mat file) in matlab, however I am getting the following error:
>> load('GetOptmzInput.mat')
Error using load
Cannot find an exact (case-sensitive) match for 'Timeseries'
The closest match is: timeseries in C:\Program Files\MATLAB\R2016a\toolbox\matlab\timeseries\@timeseries\timeseries.m
I am reltively new to matlab and I have never ran a code which has the input and output stored in parameters.
Can someone please help me undersatnd what should I do to resolve this issue.
Any help would be apprecialted.
Thank you very in advance.
2 commentaires
Spencer Chen
le 31 Jan 2020
Don't know if anyone can help you without knowing the content of 'GetOptmzInput.mat'.
Blessings,
Spencer
Rik
le 31 Jan 2020
It is always a good idea to load to a struct. That way it is clear where your variables come from.
S=load('GetOptmzInput.mat');
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Workspace Variables and MAT Files dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!