by which command a figure of 3 parametrs can be obtain

1 回表示 (過去 30 日間)
Safi ullah
Safi ullah 2017 年 1 月 19 日
回答済み: Walter Roberson 2017 年 1 月 19 日
I have 3 parameters.time,height and temperature.I want to get a 2D figure having time on x-axis height on y-axis and temperature in between x and y axis.noted that in my case Temperature depends on time and height.

採用された回答

Walter Roberson
Walter Roberson 2017 年 1 月 19 日
Depending on what form your data takes:
plot3(time, height, temperature)
or possibly
surf(time, height, temperature, 'edgecolor', 'none')
or possibly
F = TriScatteredInterp(time, height, temperature);
[X,Y] = ndgrid(time, height);
Z = F(X,Y);
surf(X, Y, Z, 'edgecolor', 'none')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by