답변 있음
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