3d Animation of a point

3 views (last 30 days)
Varun Kumar
Varun Kumar on 21 May 2019
Answered: Duc Trung Nguyen on 1 Dec 2019
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?

Accepted Answer

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

Sign in to comment.

More Answers (1)

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

Categories

Find more on Animation in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!