Solved
Combining three matrices into one
- March 17, 2019
- 8 replies
- 7296 views
Dear friends,
I need a bit of help. I have a set of values "PFscan.csv". It contains 70 columns x 1800 rows. This values represent z, and should be connected with r and t data, acting as a x and y. To create a x,y,z set with same dimensions I've made a matrices M1 and M2 from r and t, both containing 70 columns x 1800 rows. The goal is to combine this three sets into one matrix, which will consecutively contain (x,y,z)i. Hence matrix M3.
So the questions are:
How can I export this as .csv or .txt while being able to maintain order; x1,y1,z1, x2,y2,z2, etc.?
How can I plot multiple datasets into one 3D graph by using for loop? And to convert this large x,y,z set to polar plot?
Thanks!

