Respondida
Export figure is painfully slow. Save as png is fast. Why?
The reason is that MATLAB is not exactly rendering to a "VGA-ish image buffer" when you copy to clipboard. The default setting i...

casi 13 años hace | 0

| aceptada

Respondida
3D-Animation plot with the hgtransform command
I think the main reason why this doesn't do what you expect is this part right here: tx = x(i)-x(i-1); ty = y(i)-y(i-1);...

casi 13 años hace | 2

| aceptada

Respondida
manually setting plot properties
I'm not sure I entirely understand the question, but maybe this will be a starting point for you. First, the command <http:/...

casi 13 años hace | 0

Respondida
Context menu only works in the border around my uitable...
I think the unsatisfying answer here is that it's just a bug. Here's the <http://www.mathworks.com/support/bugreports/503433 bug...

casi 13 años hace | 0

| aceptada

Respondida
how to get current lineseries handle
The lineseries will (generally) be a child of the axes. So if you have a have a handle to the axes (or using |gca|, if it is the...

casi 13 años hace | 1

| aceptada

Respondida
Text plots (plotting without figure in command line)
MATLAB doesn't do this out of the box (anymore!), and I'm not aware of any 3rd party products that do it. If you want to write...

casi 13 años hace | 1

Respondida
3-D surface plot problem if Z is not a equation
Take a look at the <http://www.mathworks.com/help/techdoc/ref/trisurf.html trisurf> command.

casi 13 años hace | 0

Respondida
polar plots axis limits
Well, unfortunately there's no _direct_ way to do it. But you can cheat (yay! cheating!). Let's say you know you want to have th...

casi 13 años hace | 3

| aceptada

Respondida
Minus sign would not show up in legend plot MATLAB 2010a linux
I think this is just a bug in how certain LaTeX symbols are handled on certain platforms. See <http://www.mathworks.com/support/...

casi 13 años hace | 0

Respondida
GUI ButtonDownFcn for clicking on axes
I would use the |'ButtonDownFcn'| property on each axes, and make the callback function be a call to the <http://www.mathworks.c...

casi 13 años hace | 0

| aceptada

Respondida
Maintain image aspect ratio on figure resize
I'm assuming that the logo is displayed as an image inside an axes. If that's correct and you have the handle to the axes, you c...

casi 13 años hace | 1

| aceptada

Respondida
How do I reset axis ticks to normal after I modify them?
You want to tell the axes to place the ticks wherever it thinks is best via the <http://www.mathworks.com/help/techdoc/ref/axes_...

casi 13 años hace | 7

| aceptada

Respondida
Export level along with coordinates from contour figure datatips?
As far as I know you cannot customize the struct that is exported. But it does seem like a useful thing to do. I would suggest <...

casi 13 años hace | 0

Respondida
Default plot apperance... how do I change it??
<http://www.mathworks.com/help/techdoc/creating_plots/f7-21465.html This doc page> covers the process pretty well.

casi 13 años hace | 0

Respondida
3D graph in three 2D graph
Using is a |subplot| part of a very good way of doing this. You can use it in conjunction with <http://www.mathworks.com/help/te...

casi 13 años hace | 0

| aceptada

Respondida
How send to back patch objects in a graph?
If this is going to be a strictly 2D scene (that is, you aren't planning on adding any 3D elements like a surface), then the bes...

casi 13 años hace | 0

Respondida
clim in pcolor plot
The <http://www.mathworks.com/help/techdoc/ref/axes_props.html axes property> is called |CLim|. The convenience function which m...

casi 13 años hace | 1

| aceptada

Respondida
Single-byte characters?
Does this work for you? >> s = uint8('hello world') s = 104 101 108 108 111 32 119 111 114 108 1...

casi 13 años hace | 1

Respondida
Render excel data in 3D and interpolate.
Have a look at the <http://www.mathworks.com/help/techdoc/ref/triscatteredinterp.html TriScatteredInterp> class for interpolatio...

casi 13 años hace | 0

Respondida
Contour and Scatter in the same figure
Are you using the optional fifth input argument of <http://www.mathworks.com/help/techdoc/ref/scatter3.html scatter3>? That is t...

casi 13 años hace | 1

Respondida
Dynamically plot graphs to axes component
You can use the <http://www.mathworks.com/help/techdoc/ref/axes.html axes> command. You'll probably want to set the |'Position'|...

casi 13 años hace | 0

Respondida
Help with a 3D graph
You have a number of options. <http://www.mathworks.com/help/techdoc/visualize/f5-8666.html This documentation section> gives a ...

casi 13 años hace | 1

| aceptada

Respondida
Change line type when figure handle is known
Starting with a figure handle |f|, getting its |Children| property will most often return an axes handle |a|. a = get(f, 'Ch...

casi 13 años hace | 4

Respondida
plot transperant 3d sphere
The best way to do this is to just use the <http://www.mathworks.com/help/techdoc/ref/surface.html surface> command, given that ...

casi 13 años hace | 1

Respondida
Trilinear Piper and Durov diagrams
MATLAB doesn't provide any functions to make those kinds of diagrams directly. They seem to be highly specialized charts that yo...

casi 13 años hace | 2

Respondida
create a subplot in an existing axes
I think the problem you're seeing is a result of the fact that |plotmatrix| sets the figure's |NextPlot| property to |'replace'|...

casi 13 años hace | 0

Respondida
3d image
I'm not entirely sure, but perhaps you're referring to the axes box. If that's the case, you can try the following: axis of...

casi 13 años hace | 0

Respondida
'fill' and 'image' incompatible
The problem generating the movie is a known issue, documented here: <http://www.mathworks.com/support/bugreports/384622>. It men...

casi 13 años hace | 0

| aceptada

Respondida
3d slice viewer
For a somewhat "off the shelf" solution, <http://www.mathworks.com/matlabcentral/fileexchange/764-sliceomatic Sliceomatic> is av...

casi 13 años hace | 0

| aceptada

Respondida
Z must be a matrix, not a scalar or vector.
Your computation is done entirely with |d| and |g| which are vectors. Hence your output is a vector. Perhaps you meant to us...

casi 13 años hace | 0

| aceptada

Cargar más