フィルターのクリア

Change Plot3 to Surface

1 回表示 (過去 30 日間)
Redwood
Redwood 2019 年 2 月 12 日
コメント済み: Redwood 2019 年 2 月 12 日
Dear all,
I have data set below. I know how to use Plot 3 with thease data, but I would like to know how to use "surf" with these data.
Thank you very much in advance.
Time Cost EQ
0 100.3000 0.783505
1 95.2000 0.793869
2 87.4000 0.80429
3 79.0000 0.814784
4 71.0000 0.825363
5 63.4000 0.836038
6 56.2000 0.846817
7 49.5000 0.857715
8 43.3000 0.868749
9 38.0000 0.879915
10 33.4000 0.891142

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 2 月 12 日
編集済み: KALYAN ACHARJYA 2019 年 2 月 12 日
Create Time, Cost, and EQ, which must have same lengths, then apply the following, is there any issue-
surf(Time,Cost,EQ);
For more please visit documentation. Any Issue?
More way
data=xlsread('test1.xlsx');
tri=delaunay(data(:,1),data(:,2));
trisurf(tri,data(:,1),data(:,2),data(:,3))
grid on
  3 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 2 月 12 日
編集済み: KALYAN ACHARJYA 2019 年 2 月 12 日
I have edited the answer, please check and confirm. I am considering you have collected the data in exel. Attach the sample data file as you mentioned in the question.
Redwood
Redwood 2019 年 2 月 12 日
Dear Kalyan,
Thank you very much!!!
Sincerely yours,
J1

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeView and Analyze Simulation Results についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by