So I have a struct called stf with multiple fields; each field is a vector. I tried using the Matio library to get reach for those variables, but all I get is one variable, namely the struct stf. As the stf struct has 4 fields, I get 4 double variables. But how do I access the fields themselves? I want to store each of those fields in a vector in my C++ code. For better understanding, here's my code: int main(int argc, char** argv) { mat_t* matfp; matvar_t* matvar; matfp = Mat_Open("fields.mat",...