回答済み
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...

約15年 前 | 0

回答済み
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...

約15年 前 | 1

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

約15年 前 | 0

回答済み
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 <...

約15年 前 | 1

回答済み
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...

約15年 前 | 1

回答済み
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...

約15年 前 | 0

回答済み
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...

約15年 前 | 0

| 採用済み

回答済み
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...

約15年 前 | 0

回答済み
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-...

約15年 前 | 0

回答済み
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 ...

約15年 前 | 2

| 採用済み

回答済み
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:...

約15年 前 | 0

回答済み
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: ...

約15年 前 | 7

回答済み
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...

約15年 前 | 3

回答済み
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...

約15年 前 | 0

| 採用済み

回答済み
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? ...

約15年 前 | 1

回答済み
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...

約15年 前 | 9

| 採用済み

回答済み
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...

約15年 前 | 2

| 採用済み

回答済み
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...

15年以上 前 | 2

| 採用済み

回答済み
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...

15年以上 前 | 4

回答済み
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(...

15年以上 前 | 4

| 採用済み

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

15年以上 前 | 0

回答済み
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...

15年以上 前 | 3

回答済み
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...

15年以上 前 | 1

回答済み
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...

15年以上 前 | 0