|
|
plot 3d #2
hello
how plot 3d surf LIKE THIS D=f(tx,ty)
tx and ty are vectors and D a matrix that represent the value of D at the point (tx,ty)
thank you
|
|
0
|
|
|
|
Reply
|
ftgh
|
7/4/2010 7:13:06 PM |
|
ftgh ftgh wrote:
> how plot 3d surf LIKE THIS D=f(tx,ty)
> tx and ty are vectors and D a matrix that represent the value of D at
> the point (tx,ty)
The documentation on surf() has a specific section on parametric plotting.
|
|
0
|
|
|
|
Reply
|
Walter
|
7/4/2010 7:14:13 PM
|
|
Walter Roberson <roberson@hushmail.com> wrote in message <945Yn.3397$Zp1.2486@newsfe15.iad>...
> ftgh ftgh wrote:
>
> > how plot 3d surf LIKE THIS D=f(tx,ty)
> > tx and ty are vectors and D a matrix that represent the value of D at
> > the point (tx,ty)
>
> The documentation on surf() has a specific section on parametric plotting.
hello
I TRY WITH SURF
but a messag said that the size of vector dx and dy must be the same that D
how can plot a 3d surface like this D=f(tx,ty)
thank you
|
|
0
|
|
|
|
Reply
|
ftgh
|
7/5/2010 4:45:05 PM
|
|
ftgh ftgh wrote:
> Walter Roberson <roberson@hushmail.com> wrote in message
> <945Yn.3397$Zp1.2486@newsfe15.iad>...
>> ftgh ftgh wrote:
>>
>> > how plot 3d surf LIKE THIS D=f(tx,ty)
>> > tx and ty are vectors and D a matrix that represent the value of D
>> at > the point (tx,ty)
>>
>> The documentation on surf() has a specific section on parametric
>> plotting.
>
> hello I TRY WITH SURF but a messag said that the size of vector dx and
> dy must be the same that D how can plot a 3d surface like this
> D=f(tx,ty) thank you
Which Matlab version are you using? Older versions required that the X and Y
be arrays the same size as Z, but newer versions allow X and Y to be vectors
as long as Z is length(X) by length(Y).
If you are using a version old enough not to support vectors, then you will
need to expand your X and Y vectors into matrices, such as by using meshgrid()
or ndgrid().
If you are using a version new enough to support vectors, then double check
that your vector and array sizes are consistent.
|
|
0
|
|
|
|
Reply
|
Walter
|
7/5/2010 5:28:37 PM
|
|
|
3 Replies
387 Views
(page loaded in 0.199 seconds)
Similiar Articles: plot 3d - comp.soft-sys.matlabhello how plot 3d surf LIKE THIS D=f(tx,ty) tx and ty are vectors and D a matrix that represent the value of D at the point (tx,ty) thank you ... 3D plot - comp.soft-sys.math.scilabHello, I'm generating a CSV file for a digital elevation model. It works fine but I'd like to plot 3D plots (not surface) in Scilab to check the ... Plotting 3D spherical coordinates - comp.soft-sys.matlab ...Hi there, I've read many posts asking about plotting 3D graphs and 3D radiation patterns but none of them get solved properly so I'm asking again. ... 3d plotting - comp.soft-sys.matlabI have to plot a surface using 3d plotting. I have three vectors X,Y and N1 Sizeof X is 1 330 Sizeof Y is 1 320 Size of N1 is 330 320 i am... plotting coordinate axes in 3d plot - comp.soft-sys.matlab ...hi All I am wondering if there is an efficient way to plot a coordinate axes (x,y, z unit vectors from common point) at a point in a 3d plot. I ... Changing 3D plot view angles in a gui axis - comp.soft-sys.matlab ...Hi, I've been doing a lot of 3D plotting and I have my code set up to have the option of certain view angles for consistency's sake. I got the code d... 3D plot for a 3D matrix - comp.soft-sys.matlabHi I have a 3D matrix C (600x36x196) that represent an object (each layer of that object is represented by the X-Y matrix) and the Z is the height ... 3D plotting of a partial sphere - comp.soft-sys.matlabI am trying to plot a 3D volume defined as part of a sphere. The volume is defined by six numbers in spherical coordinates (r, el & az): minimum/maxim... plotting a 3D data in plane by color - comp.soft-sys.matlab ...Hi, I like to plot a data set (X,Y,Z) in a smoothly colored X-Y plane which the color in each point is determined with Z values ( a color bar shoul... transparency in 3D plots - comp.soft-sys.matlabHello everybody, Firstly excuse me if my english is a little bit approximate, I am actually French. What's more, it is the first time that I use th... Plot3D - Wolfram Mathematica 8 Documentationbounding 3D box ratios : ClippingStyle: Automatic: how to draw clipped parts of surfaces ... Plot a saddle surface; the mesh curves show where the function is zero: 3D Grapher - plots animated 2D and 3D graphs of equations and tablesPlotting and data visualization programming for graphing and animating 2D and 3D equations and table charts. Allows some customization. 7/28/2012 1:06:04 AM
|
|
|
|
|
|
|
|
|