Create a plot with values from matrices of many dimensions.

조회 수: 7 (최근 30일)
stelios loizidis
stelios loizidis 2022년 1월 14일
댓글: stelios loizidis 2022년 1월 14일
Hello,
I have the following matrices: A:10X10X10X10, B:10X10X10X10, C:10X10X10X10, D:10X10X10X10 and S:10X10
What I want is a contour plot that includes the values from all the matrices (A,B,C,D,S). I tried the commands contour and surfc but the following errors occur:
contour: "Input arguments must have at most 2 dimensions."
surfc: "Value must be a vector or 2D array of numeric type."
There is a way to make a corresponding plot such as a contour plot, with values from all the matrices?
Your help is important !!!

채택된 답변

David Sanchez
David Sanchez 2022년 1월 14일
Hi Stelios,
it seems you are trying to plug 4D matrices into the surfc function, and as you mention:
surfc: "Value must be a vector or 2D array of numeric type."
Grab a 2D portion of each matrix and plug it into surfc. On how to extract the first 2 dimension of matrix A, use for example the following:
A_2D = A(:,:, 1, 1);
  댓글 수: 3
David Sanchez
David Sanchez 2022년 1월 14일
Loop over those simensions (the 3rd and 4th argument).
The 2D matrix given by the 2nd element of the 3rd dimension and the 1st element of the 4th dimension is:
A_2D = A(:,:, 2,1);
stelios loizidis
stelios loizidis 2022년 1월 14일
Thanks for the valuable help !!!!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by