MATLAB: 3d Animation of a point

3d plots

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?

Best Answer

[num,txt,raw] = xlsread(myfile) ;
x = num(:,1) ;
y = num(:,2) ;
z = num(:,3) ;
comet3(x,y,z)