I have a structure with two unnamed fields that I need to access individually as vectors. The matlab help page only has examples with field names.
https://www.mathworks.com/help/matlab/matlab_prog/access-data-in-a-structure-array.html
How do I retrieve an unnamed field?
Edit
For example, my data looks like this:
0.5000 0.1338
0.4999 0.1445
0.4998 0.0716
and not like:
x y
0.5000 0.1338
0.4999 0.1445
0.4998 0.0716
tableor other data type? You can check the data type withclass(s), wheresis the variable holding your data.