Effacer les filtres
Effacer les filtres

Read a 3D matrix from Excel file

7 vues (au cours des 30 derniers jours)
Behrad Ze
Behrad Ze le 28 Jan 2022
Commenté : Behrad Ze le 28 Jan 2022
I have an Excel file of multiple rows and columns. I want to plot the entire file as a 3D plot. The first row is X and the First column is Y. I have tried to read X,Y and Z with the below codes, but I faild.I want to insert this data into a 3D matrix, in which I could do some calculations on that and then plot it. How can I insert this Excel file into a 3D matrix? and How can I plot it? I have also attached the Excel file. Thanks
x=sample(1,2:22)
y=sample(2:102,1)
xSize=length(x);
ySize=length(y);
for i=1:xSize
for j=1:ySize
xP(i)=x(i);
yP(j)=y(j);
zP(i,j,j)=sample((i+1),(j+1))
end
end
  6 commentaires
Behrad Ze
Behrad Ze le 28 Jan 2022
Modifié(e) : Behrad Ze le 28 Jan 2022
All the cells except the first row and the first column are my Z direction.I have actually 21*101 values for the Z direction.
Behrad Ze
Behrad Ze le 28 Jan 2022
I am quite new to Matlab. I have plotted it using Origin,but I need to manipulate it using Matlab.I am not sure if it makes sense to use 3d matrix in this case.I have 21 X values, 101 Y values, and 21*101 Z values.I am really puzzled. What could the best option to store these values? Thank You

Connectez-vous pour commenter.

Réponse acceptée

Voss
Voss le 28 Jan 2022
I think a 2D matrix is the way to go, since you have one value for each (x,y) point.
Here are some ways you might visualize your data. All of these ways create a surface object:
sample = readmatrix('sample.csv');
x=sample(1,2:end);
y=sample(2:end,1);
data = sample(2:end,2:end);
figure();
surf(x,y,data);
colorbar();
Then the same surface viewed from above:
figure();
surf(x,y,data);
colorbar();
view([0 90]);
Another way to do the same thing:
figure();
pcolor(x,y,data);
colorbar();
  1 commentaire
Behrad Ze
Behrad Ze le 28 Jan 2022
Thanks for your answer. It worked!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graphics Object Programming dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by