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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 1

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 7

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 2

| akzeptiert

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 49

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 2

| akzeptiert

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

mehr als 14 Jahre vor | 1

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 2

| akzeptiert

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

mehr als 14 Jahre vor | 2

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 1

| akzeptiert

Mehr laden