Respondida
preserve datetick labels when resizing
Here's a small example that might help: function test plot( now : now+30, rand( 1, 31 ) ); datetick x; s...

más de 12 años hace | 0

Respondida
How to transfer pointcloud to mesh
Perhaps |v| and |f| represent vertex and face information? If that is the case you can use the <http://www.mathworks.com/help/te...

más de 12 años hace | 1

Respondida
Triangular Mesh w/ Known Vertices
If I understand you correctly, you have a list of vertices and an array that specifies how to connect them into triangles. If yo...

más de 12 años hace | 0

Respondida
How to plot discrete points as colormap?
I think you want to use <http://www.mathworks.com/help/techdoc/ref/scatter.html |scatter|> instead of |surf|. Take a look at the...

más de 12 años hace | 2

| aceptada

Respondida
Get lineseries handle
Setting the |DisplayName| property does not automatically show the legend. You still need to explicitly show the legend: h ...

más de 12 años hace | 0

| aceptada

Respondida
Plotting cell array with empty cells - changing linespec
I would suggest using a property-value pair to set the marker instead of a linespec string in this case: f = { 1:3, rand(1,...

más de 12 años hace | 0

Respondida
Help in visualizing four-dimensional data.
This series of videos discuses most of the functions used in MATLAB for visualizing functions of three variables: <http://blo...

más de 12 años hace | 0

Respondida
Meshing around the outside of a circle
Are you using the <http://www.mathworks.com/help/techdoc/ref/delaunaytriclass.html |DelaunayTri| class> to generate the mesh? If...

más de 12 años hace | 0

Respondida
Plotting X Y Z
This is simply not what <http://www.mathworks.com/help/techdoc/ref/ezplot.html |ezplot|> is designed to do. The documentation fo...

más de 12 años hace | 1

Respondida
Why does EdgeLighting on patches not work?
It _is_ being lit, just not the way you're expecting based on how the patch was created. For example, after doing this... ...

más de 12 años hace | 2

| aceptada

Respondida
plot scatter and line in same grid
They're both there; they are just on vastly different scales. Note that the x-data of the line goes from 0 to 3. The x-data of t...

más de 12 años hace | 2

Respondida
Superposition of contour and contourf
The issue arises from the fact that the colormap is a per figure (as opposed to per axes or per object) property. <http://www.ma...

más de 12 años hace | 0

Respondida
Graph color as a function.
You might want to have a look at <http://www.mathworks.com/matlabcentral/fileexchange/14677-cline |cline| on the File Exchange>....

más de 12 años hace | 1

Respondida
use of eval
I think <http://www.mathworks.com/help/techdoc/ref/feval.html |feval|> would be a better option here. It is a safer than |eval|,...

más de 12 años hace | 4

Respondida
How to rotate a function about the y-axis
You might have a look at this similar question: <http://www.mathworks.com/matlabcentral/answers/9377-changing-reference-axis-...

más de 12 años hace | 0

Respondida
Print an image with a fixed size
You should use the |'PaperPosition'| property to adjust the output size, not |'PaperSize'|. However, even if you make that chang...

más de 12 años hace | 0

| aceptada

Respondida
Images for real time spectrogram: how to change CData partially in an efficient way?
Don't assume you have a performance problem before you do. Try the |C = get(image1, 'CData')|, modify |C|, |set(image1, 'CData',...

más de 12 años hace | 0

Respondida
Print curly braces in a plot
There's nothing that ships with MATLAB that does exactly what you want. The <http://www.mathworks.com/help/techdoc/ref/annotatio...

más de 12 años hace | 4

| aceptada

Respondida
Volumetric Interpolation using Slice function, how to obtain colour values from the image of the plane
You can extract the |CData| property of the slice surface |h|: get(h, 'CData') That should get you the values you're loo...

más de 12 años hace | 0

| aceptada

Respondida
MESHZ - Change Curtain color.
Yes, it is possible. You can do it by adjusting the <http://www.mathworks.com/help/techdoc/ref/surface_props.html#CData |CData|>...

más de 12 años hace | 0

| aceptada

Respondida
3D Surface Plot With Only Vectors
Have you looked at <http://www.mathworks.com/help/techdoc/ref/trisurf.html |trisurf|>? The idea is that you first need to com...

más de 12 años hace | 2

Respondida
3d triplot
I think you might be looking for <http://www.mathworks.com/help/techdoc/ref/tetramesh.html |tetramesh|>.

más de 12 años hace | 0

Respondida
Can I make a surface or colormap with latitude, longitude, and concentration using MATLAB? (photo example)
Have you looked at the <http://www.mathworks.com/help/techdoc/ref/pcolor.html |pcolor|> function? Here's an example: [x,y,z...

más de 12 años hace | 0

| aceptada

Respondida
title that spans subplots
An <http://www.mathworks.com/help/techdoc/ref/annotation.html |annotation|> is good to use here. It is a little easier than the ...

más de 12 años hace | 4

| aceptada

Respondida
what function contourc returns
The contour matrix that |contourc| returns is basically a bunch of vertices that define the contour lines. Each vertex is an (x,...

más de 12 años hace | 1

| aceptada

Respondida
Why does ishandle(0) return 1?
0 is the numeric handle to the <http://www.mathworks.com/help/techdoc/ref/rootobject.html |root object|>. You can find a list of...

más de 12 años hace | 0

Respondida
Can timers trigger a single event that many objects listen to?
Sure, that's entirely possible. You can wrap the basic MATLAB <http://www.mathworks.com/help/techdoc/ref/timer.html |timer|> in ...

más de 12 años hace | 2

| aceptada

Respondida
Plotyy and error bars
When customizing graphs made with <http://www.mathworks.com/help/techdoc/ref/plotyy.html |plotyy|>, it is usually useful to stor...

más de 12 años hace | 0

| aceptada

Respondida
Strange patch behaviour when hgtransform applied to object
I think this is probably a bug in how the <http://www.mathworks.com/support/tech-notes/1200/1201.html#Section_1 ZBuffer renderer...

más de 12 años hace | 1

| aceptada

Respondida
How to get surf to plot all points and not ignore last row and column?
I understand that you want to draw a surface where each face is _centered_ at a certain location and colored appropriately. It _...

más de 12 años hace | 1

Cargar más