3d Animation of a point

1 次查看(过去 30 天)
i have a excel file consist of x,y and z displacement of a point for particular frequency. is it possible to show the 3d animation of a point from its initial position to a position where it will get displaced for particular frequency. i want to create gui which will import displacement from the excel sheet. is it possible to create gui?

采纳的回答

KSSV
KSSV 2019-5-21
[num,txt,raw] = xlsread(myfile) ;
x = num(:,1) ;
y = num(:,2) ;
z = num(:,3) ;
comet3(x,y,z)
  6 个评论
Varun Kumar
Varun Kumar 2019-5-22
can you refer me some literature
KSSV
KSSV 2019-5-22
Read the data, keep them in an array; use plot.

请先登录,再进行评论。

更多回答(1 个)

Duc Trung Nguyen
Duc Trung Nguyen 2019-12-1
[num,txt,raw] = xlsread(myfile) ;
x = num(:,1) ;
y = num(:,2) ;
z = num(:,3) ;
comet3(x,y,z)

类别

Help CenterFile Exchange 中查找有关 Animation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by