Prev: help needed.....
Next: Urgent
From: shanthi on 6 May 2010 07:38 guys is to possible to plot 3D graphs in Matlab?????......and if possible can we derive equation from tat graph??...... this is the data x y z 13 50 9.72 13.5 65 5.63 14 70 4.5 14.5 80 3.68 90 1.7 if possible plzzz write the commands which i should use....... regards shanthi
From: Sean on 6 May 2010 07:54 "shanthi " <shanthi.13531(a)gmail.com> wrote in message <hru9ms$81g$1(a)fred.mathworks.com>... > guys is to possible to plot 3D graphs in Matlab?????......and if possible can we derive equation from tat graph??...... > > this is the data > x y z > 13 50 9.72 > 13.5 65 5.63 > 14 70 4.5 > 14.5 80 3.68 > 90 1.7 > > if possible plzzz write the commands which i should use....... > > regards > shanthi Yes: x = 13:.5:15; y = [50 65 70 80 90]; z = [9.72 5.63 4.5 3.68 1.7]; plot3(x,y,z,'r*') %If you have curve fitting tool box: >>cftool >>sftool
From: shanthi on 6 May 2010 08:38 "Sean " <sean.dewolski(a)nospamplease.umit.maine.edu> wrote in message <hruaks$8tj$1(a)fred.mathworks.com>... > "shanthi " <shanthi.13531(a)gmail.com> wrote in message <hru9ms$81g$1(a)fred.mathworks.com>... > > guys is to possible to plot 3D graphs in Matlab?????......and if possible can we derive equation from tat graph??...... > > > > this is the data > > x y z > > 13 50 9.72 > > 13.5 65 5.63 > > 14 70 4.5 > > 14.5 80 3.68 > > 90 1.7 > > > > if possible plzzz write the commands which i should use....... > > > > regards > > shanthi > > Yes: > x = 13:.5:15; > y = [50 65 70 80 90]; > z = [9.72 5.63 4.5 3.68 1.7]; > > plot3(x,y,z,'r*') > > %If you have curve fitting tool box: > >>cftool > >>sftool thanks a lot!!!!!!!!!!!!!!!!!!!!!!
|
Pages: 1 Prev: help needed..... Next: Urgent |