フィルターのクリア

3D Plot from xls

1 回表示 (過去 30 日間)
SYML2nd
SYML2nd 2019 年 4 月 5 日
回答済み: darova 2019 年 4 月 5 日
Hi all,
I am a new user of Matlab, I have a file .xlsx and I would like to plot a 3d graph of these data. Unfortunately I was not able to find a way to plot it. Can you help me?
  2 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 4 月 5 日
編集済み: KALYAN ACHARJYA 2019 年 4 月 5 日
plot a 3d graph of these data.
There are 8 Columns and first element cell in exel file is blank. Plot vs ????
SYML2nd
SYML2nd 2019 年 4 月 5 日
The first column are the seconds, the firs raw represents the coordinates in x and the other values are the kinetic energy

サインインしてコメントする。

採用された回答

darova
darova 2019 年 4 月 5 日
clc,clear
A = xlsread('Prova.xlsx');
t = A(2:end,1);
x = A(1,2:end);
Z = A(2:end,2:end);
surf(x,t,Z)

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by