Visualization of 4 dimensional function
Mostrar comentarios más antiguos
I am calculating a distribution function which is 4 dimensional.
I have two space variables x and y and coresponding to them,two conjugate momenta kx and ky.
Though I know i have to select two conjugate variables at one time and then calling the function and finally plot it for 2 variables.
But i dont know how to store that 4D matrix and then calling it to plot it.
Anything related to 4D would help.
Thanks
Respuestas (1)
Girijashankar Sahoo
el 20 de Mayo de 2021
0 votos
%%% this might be helpful for you there is four variable gives 4D matrix plot
load patients Height Weight Diastolic Systolic % load data
labels = {'Height' 'Weight' 'Diastolic' 'Systolic'};
data = [Height Weight Systolic Diastolic];
[h,ax] = plotmatrix(data); % create a 4 x 4 matrix of plots
for i = 1:4 % label the plots
xlabel(ax(4,i), labels{i})
ylabel(ax(i,1), labels{i})
end
Categorías
Más información sobre Descriptive Statistics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!