Reputation: 1
I tried to open a SSI file from 2007 in MATLAB, but i can only see gibberish in the command window.
also tried using the MAT file, yet there is nothing in the command window.
Both of them used the same data, just in different format, I need either one of them for my project to generate a 3D graph, can someone teach me how to fix this issue?
Thanks!
I have tried fopen, disp for the mat file, but nothing shows up.
Upvotes: 0
Views: 41
Reputation: 26
after you load the MAT-file in the command line, the data saved in it will appear on the workspace panel. Hence, the next step is to use these data to the desired task, for instance generating a 3D graph. From the second pic you give, there are 2 variables (a and t) have dimensions equal in row numbers. after you get the variables from the MAT-file, you can use plot3
command to generate 3D graph.
Upvotes: 0