Answered
Need play/pause buttons for my animation!
I'm not quite sure I understand your objection to using <http://www.mathworks.com/help/toolbox/images/ref/implay.html |implay|>....

13 years ago | 0

Answered
Interactive manipulation with graph in Matlab
You can achieve an effect similar to Mathematica's "Manipulate" by adding a <http://www.mathworks.com/help/techdoc/ref/uicontrol...

13 years ago | 1

Answered
Plotting 3D graph using measured points
You could try <http://www.mathworks.com/help/techdoc/ref/trisurf.html |trisurf|>.

13 years ago | 0

Answered
Matlab GUI axis buttondownfnc Select points
Well this sounded like a fun one, so here's what I came up with: % Set up my data sets. Each pair of x-coordinates goes into ...

13 years ago | 0

| accepted

Answered
Plotting in Multiple Figures inside Loop
Calling the |figure| command will cause the graphics queue to flush (basically like a <http://www.mathworks.com/help/techdoc/ref...

13 years ago | 7

| accepted

Answered
How do I change height and colour of cylinder made with SURF?
Here's how you would do it with an <http://www.mathworks.com/help/techdoc/ref/hgtransform.html |hgtransform|> and <http://www.ma...

13 years ago | 0

Answered
Skip strings in the legend
Please see the answer to <http://www.mathworks.com/matlabcentral/answers/406-how-do-i-skip-items-in-a-legend this question>.

13 years ago | 0

| accepted

Answered
Is it possible to add Plot Edit Toolbar functionality to a GUI?
Well, this is a little sneaky, but you can try this if you absolutely _need_ to have this functionality. First, you can find the...

13 years ago | 2

| accepted

Answered
Show specific data points in contourf plots
How about <http://www.mathworks.com/help/techdoc/ref/scatter.html |scatter|>? You can use the fourth input argument to set the c...

13 years ago | 1

| accepted

Answered
Volume Vizualization of large volume
The basic idea is illustrated in the answer to this question: <http://www.mathworks.com/matlabcentral/answers/1316-generating-s...

13 years ago | 0

| accepted

Answered
creating deciles in a colorbar/colormap
You should be able to do that by setting a colormap with only 10 values. For example, using the |jet| colormap: pcolor(peaks)...

13 years ago | 0

| accepted

Answered
title string on vertical colorbar
This is kind of hack, but how about this: h = colorbar; ylabel(h, 'foo')

13 years ago | 49

Answered
Multiple reference planes defining color in a 3D SURF plot?
I think you are on the right track with using the |C| input to |surf(X, Y, Z, C)|. |C| should be an array that is the same size ...

13 years ago | 0

Answered
caxis with HeatMap?
Maybe I should have mentioned this in the answer to your <http://www.mathworks.com/matlabcentral/answers/10995-colorbar-displays...

13 years ago | 0

| accepted

Answered
Colorbar displays in new figure
The <http://www.mathworks.com/help/toolbox/bioinfo/ref/heatmapobject.html |HeatMap object|> just doesn't support adding a colorb...

13 years ago | 0

| accepted

Answered
plotting a 4d graph as a series of 3d slices
I think you will want to use the <http://www.mathworks.com/help/techdoc/ref/surface.html |surface|> command. The idea is that yo...

13 years ago | 1

| accepted

Answered
How can I apply variable transparency to a plot using scatter3?
MATLAB doesn't allow you to control the transparency of markers. If you don't have a tremendous number of data points you co...

13 years ago | 2

| accepted

Answered
Why is the "print" changing the colors of my plot?
I think that's just an artifact of the <http://en.wikipedia.org/wiki/JPEG#Color_space_transformation JPEG compression process>. ...

13 years ago | 1

Answered
How do I reference a super class of a superclass object?
I find that using the predefined set methods (i.e. |function set.Foo(obj,value)|) are convenient in simple scenarios, but for re...

13 years ago | 0

| accepted

Answered
Using SLICE on a 3D Image Volume
Maybe you're looking for something like this? % Define 3D data [x,y,z] = meshgrid(linspace(-1,1,30)); v = x.^2 + y.^2...

13 years ago | 2

| accepted

Answered
Saving Custom Sized Graphs in MATLAB
I would suggest two things. First, use the <http://www.mathworks.com/help/techdoc/ref/print.html print> command instead of |save...

13 years ago | 1

| accepted

Answered
How to center text in Latex and adjust line spacing?
It will probably be easiest to do this by making two separate text objects. When you tell the text object to use the LaTeX inter...

13 years ago | 0

Answered
latex interpreter - different fonts
What you're describing is basically the expected behavior. When you set the |Interpreter| property to |'latex'|, MATLAB will han...

13 years ago | 0

Answered
Working with large Matlab figures in Word
With that many points, it is probably advisable to use a bitmap format, rather than EMF. I would think that exporting the figure...

13 years ago | 1

| accepted

Answered
Creating a Legend for Two Bar Plots (Plotted Together on Same Figure)
With that syntax, |legend| is assuming you want to include in the legend the first two things plotted -- namely the first set of...

13 years ago | 0

| accepted

Answered
isosurface on 3d unstructured triangular grid?
Have a look at the answer to <http://www.mathworks.com/matlabcentral/answers/1316-generating-scalar-volume-data-now-in-x-y-z-v-c...

13 years ago | 0

Answered
ellipsoids intersection volume- how to speed up the code ?
If you don't want to view the ellipsoid, then simply take out the call to |surf|.

13 years ago | 1

| accepted

Answered
Plotting a color function on a sphere
There are a couple of avenues to explore. I wouldn't say either of them are particularly easy, unfortunately. Idea 1: Use <h...

13 years ago | 0

Answered
Plotting arrows specified by azimuth
I think in order to keep the angles consistent you can't necessarily change the axes limits _completely_ arbitrarily, because th...

13 years ago | 0

Answered
Plot Line Changes When Adding Patches
When you add transparency to an object in a figure, the figure will automatically change its renderer to |OpenGL|. You can read ...

13 years ago | 1

| accepted

Load more