フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How do I create a surf plot 3 vectors who are connected by time?

1 回表示 (過去 30 日間)
maxmathlab
maxmathlab 2017 年 12 月 6 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have 3 measurment signals/vectors from a simulation. Speed, acceleration, and g-froce. I want them to plot in a 3D plot but surf() requires a matrix of each x,y and z. They are all connected by time (intervall the simulation measured the 3 values.
exp. xyz and time are all 100 values
x=[27.5:0.05:32.45];
y=[-345:7:350];
z=[-10:0.2:9.8];
time=[0:0.1:9.9];
  4 件のコメント
Benjamin Kraus
Benjamin Kraus 2017 年 12 月 6 日
編集済み: Benjamin Kraus 2017 年 12 月 6 日
Can you be a little more clear about what visualization you are hoping to achieve? A surface plot can be used to visualize a function that is dependent on two variables:
z = f(x,y)
If I'm understanding correctly, in your case you have three functions that are all dependent on time:
x = f(t)
y = g(t)
z = h(t)
It isn't clear how you want to visualize that as a 3D surface plot.
It sounds like what you (maybe) want is a 3D plot showing speed, acceleration, and g-force as x, y, and z, all dependent on time. This would require some kind of animation to represent time (because x, y, and z are already claimed by other variables). comet3 may do something kind of like what you are looking for.
maxmathlab
maxmathlab 2017 年 12 月 6 日
編集済み: maxmathlab 2017 年 12 月 6 日
EDIT: after looking at comet3. I come to the conclusion that this is not helping
kind of, i need want a plain/surface in a 3d plot with the xyz beeing speed acc and g

回答 (0 件)

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by