I have a .mat file in which there are 192 polyshape and in each polyshape there is a matrix of [16*2] double
I want to extract all those [16*2] double values from each polyshape and store it into .csv file
I have a .mat file in which there are 192 polyshape and in each polyshape there is a matrix of [16*2] double
I want to extract all those [16*2] double values from each polyshape and store it into .csv file
Copyright © 2021 Jogjafile Inc.

I think you should be able to concatenate all the vertices matrices and use 'writematrix' function to write a double matrix into a CSV file. I assume that there is a variable named 'polyshapes' which is an array of all the 192 polyshape data you have. Then you can run the following.
Regards, Zenin