Beantwortet
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...

fast 15 Jahre vor | 0

Beantwortet
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...

fast 15 Jahre vor | 1

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

fast 15 Jahre vor | 0

Beantwortet
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 <...

fast 15 Jahre vor | 1

Beantwortet
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...

fast 15 Jahre vor | 1

Beantwortet
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...

fast 15 Jahre vor | 0

Beantwortet
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...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 15 Jahre vor | 0

Beantwortet
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-...

fast 15 Jahre vor | 0

Beantwortet
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 ...

fast 15 Jahre vor | 2

| akzeptiert

Beantwortet
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:...

fast 15 Jahre vor | 0

Beantwortet
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: ...

fast 15 Jahre vor | 7

Beantwortet
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...

fast 15 Jahre vor | 3

Beantwortet
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...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
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? ...

etwa 15 Jahre vor | 1

Beantwortet
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...

etwa 15 Jahre vor | 9

| akzeptiert

Beantwortet
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...

etwa 15 Jahre vor | 2

| akzeptiert

Beantwortet
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...

etwa 15 Jahre vor | 2

| akzeptiert

Beantwortet
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...

etwa 15 Jahre vor | 4

Beantwortet
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(...

etwa 15 Jahre vor | 4

| akzeptiert

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

etwa 15 Jahre vor | 0

Beantwortet
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...

etwa 15 Jahre vor | 3

Beantwortet
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...

etwa 15 Jahre vor | 1

Beantwortet
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...

etwa 15 Jahre vor | 0