3d Animation of a point

1 visualizzazione (ultimi 30 giorni)
Varun Kumar
Varun Kumar il 21 Mag 2019
Risposto: Duc Trung Nguyen il 1 Dic 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?

Risposta accettata

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

Accedi per commentare.

Più risposte (1)

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

Categorie

Scopri di più su Animation in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by