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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 1

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 7

| accettato

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 2

| accettato

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

oltre 14 anni fa | 1

| accettato

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

oltre 14 anni fa | 0

| accettato

Risposto
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)...

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 49

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 1

| accettato

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

oltre 14 anni fa | 2

| accettato

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

oltre 14 anni fa | 1

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

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 2

| accettato

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

oltre 14 anni fa | 2

| accettato

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 1

| accettato

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

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 1

| accettato

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 1

| accettato

Carica altro