3d Animation of a point

4 Ansichten (letzte 30 Tage)
Varun Kumar
Varun Kumar am 21 Mai 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?

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

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

Kategorien

Mehr zu Animation finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by