Dot indexing is not supported for variables of this type.
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Error in ferroskyrPos (line 36)
M=A.data;
3 Kommentare
Antworten (1)
Bjorn Gustavsson
am 14 Okt. 2020
When you get a problem like this it is because the variable is not of a struct as you expect. In general you can add a line with something like this:
whos A
just after your importdata-call. That will tell you what the variable is.
Another thing to do is to set a debug-stop like this:
dbstop if error
and rerun your script/function, then matlab will stop at the point of error, giving you access to the workspace where the error occured, so that you can have a look at the variables with interactive keyboard commands, you can even step up and down in the call-stack to
investigate how you ended up where you ended up. (This is a necessary skill to learn, not a funny one to do, but as someone said "to err is human"...)
HTH
8 Kommentare
Walter Roberson
am 15 Okt. 2020
https://pypi.org/project/OOMMFTools/ is python tools that can convert ovf files into .mat files.
Walter Roberson
am 15 Okt. 2020
https://math.nist.gov/oommf/doc/userguide11b2/userguide/vectorfieldformat.html defines the structure of ovf files, by the way.
Siehe auch
Kategorien
Mehr zu Variables finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!