Respondida
3d point cloud and normal vector to the surface
<http://www.mathworks.com/help/techdoc/ref/scatter3.html scatter3> would be useful for drawing the point cloud. <http://www.m...

alrededor de 15 años hace | 0

Respondida
Plotting overlapping surfaces...
The situation I think you are describing is known as z-stitching or z-fighting. It happens when two surfaces occupy the same cop...

alrededor de 15 años hace | 1

Respondida
3-D histogram in spherical coordinates
Have you tried looking at <http://www.mathworks.com/help/techdoc/ref/bar3.html bar3>?

alrededor de 15 años hace | 0

Respondida
Microsoft Word and Figures
I don't think there is going to be anything that does exactly what you're looking for. The closest thing I can think of is the <...

alrededor de 15 años hace | 1

Respondida
setting only the y axis scale of a plot
You can use the <http://www.mathworks.com/help/techdoc/ref/xlim.html ylim> command, or use the <http://www.mathworks.com/help/te...

alrededor de 15 años hace | 1

Respondida
Plot of data representing particles of various size and various properties (e.g. temperature)
You should be able to do this with the <http://www.mathworks.com/help/techdoc/ref/scatter.html scatter> command. The first two i...

alrededor de 15 años hace | 0

Respondida
Visualisation 2D mesh grey values
The commands <http://www.mathworks.com/help/techdoc/ref/image.html image> and <http://www.mathworks.com/help/techdoc/ref/surf.ht...

alrededor de 15 años hace | 0

| aceptada

Respondida
Construct volumetric mesh grid by interpolating scattered point cloud.
I'll hazard a guess at what's going on with your test case. I think |TriScatteredInterp| is doing the right thing, but you've se...

alrededor de 15 años hace | 0

Respondida
3D Plot of an 2D .bmp image
It's a little unclear what kind of results you expected. My guess is that you have a color image which will be imported as an M-...

alrededor de 15 años hace | 0

Respondida
What you get with: (0:n-1)*n + 1:n
Two things going on here. 1) Addition is done before the colon operator. Compare this: >> 1 + 1:4 ans = 2 3 ...

alrededor de 15 años hace | 2

| aceptada

Respondida
Plotting Station Data using pcolor
You're on the right track that you need to convert your scattered data into gridded data. A good tool for that job is the <http:...

alrededor de 15 años hace | 0

Respondida
Change size of subplot tile containing image, other tiles contain plots
You can try a few things. If you want to stick with |subplot| you can try something clever using a vector in the third input: ...

alrededor de 15 años hace | 7

Respondida
MATLAB handle class violates polymorphism on handle equivalence
I believe what you are looking for has been introduced in R2011a with the <http://www.mathworks.com/help/techdoc/ref/matlab.mixi...

alrededor de 15 años hace | 3

Respondida
Logarithmic scale using PSD function
After creating the plot, set the axes <http://www.mathworks.com/help/techdoc/ref/axes_props.html XScale> (if you want to replica...

más de 15 años hace | 0

| aceptada

Respondida
crosshairs or just vertical line across linked axis plots
How about just using the <http://www.mathworks.com/help/techdoc/creating_plots/f5-35149.html Pointer> property on the figure? ...

más de 15 años hace | 1

Respondida
How do I group boxplots by modifying the X locations?
Perhaps you are looking for the |positions| option? X = [1.2 1.8 3.2 3.8 5.2 5.8]; Y = rand(100, 6); boxplot(Y, 'position...

más de 15 años hace | 9

| aceptada

Respondida
Area plot with gradient
This is the kind of custom graphic that you can build yourself with <http://www.mathworks.com/help/techdoc/ref/patch.html patche...

más de 15 años hace | 2

| aceptada

Respondida
Generating scalar volume data, now in x,y,z,v columns
You will want to use the <http://www.mathworks.com/help/techdoc/ref/triscatteredinterp.html TriScatteredInterp> class to interpo...

más de 15 años hace | 2

| aceptada

Respondida
Is there a tool to make a program compatible with an older version of MATLAB? Backwardscompatibilize...
This answer is about the mechanics of how to check the MATLAB version from your code. Maybe your question was more broad than th...

más de 15 años hace | 4

Respondida
insert table into figure
You'll want to use <http://www.mathworks.com/help/techdoc/ref/uitable.html uitable>. Here's a very simple example: subplot(...

más de 15 años hace | 4

| aceptada

Respondida
Drawing Polygons and Points
While |hold| works, you might consider using low-level graphics functions like <http://www.mathworks.com/help/techdoc/ref/patch....

más de 15 años hace | 0

Respondida
How do I control the min and max values for colorbar within an m-file.
Try using the <http://www.mathworks.com/access/helpdesk/help/techdoc/ref/caxis.html caxis> command. This command adjusts the <ht...

más de 15 años hace | 3

Respondida
3D image stack plot in MATLAB
If you have the Image Processing Toolbox you might want to take a look at <http://www.mathworks.com/help/toolbox/images/ref/mont...

más de 15 años hace | 1

Respondida
problem with mirroring of y axis label
If you are you using MATLAB R2008a or earlier on Mac OS 10.6, you might be seeing this bug: <http://www.mathworks.com/support/bu...

más de 15 años hace | 0