How to plot time-spatial distribution of the data?

14 vues (au cours des 30 derniers jours)
d7366431
d7366431 le 8 Mai 2020
Hi,
I am not so good in coding and would appreciate it if you could guide me a bit.
How with the matlab I can plot the results as shown below?
My input matrix for this chart is shown below. Yellow (time steps), Green (position along the measurement line), Grey (Data obtained at specific position and time).
Thank you!

Réponses (2)

rajat aggarwal
rajat aggarwal le 12 Mai 2020
You can use plot3() function available in matlab for this. This is 3d data as for particular value of position and time there is a specific value.
>> plot3(X,Y,Z) ;
where
Z is the matrix in grey for example z= [ 0 2.03E-08 .............; 0 -6.8E-08.....................; ... ]
X is row vector of position[] for example position[] = [y1 y2 y3 y4 ......]
Y is row vector of time[] for example time[] = [t1 t2 t3 ..... ]
Please visit the following link for more information about plot function first.
As it is mentioned here that plot(p,q) will plot the coloumns of p corresponding to coloumns of q if both are matrices. If one of them is vector lets say p and length of p is equal to q(matrix) coloumn length then the function plots each matrix row versus the vector p.
Here in your example we have three arguments. Similar concept can be used there.
For more information you can refer the following links for plot3 functions.

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 25 Nov 2022
For this exercise, it is better to use one of the following functions:
imagesc()
contourf()

Catégories

En savoir plus sur Data Distribution Plots dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by