Réponse apportée
Why does executing the Moving the Camera Through a Scene produce unwanted numerical values?
I believe you're using a version of MATLAB that is older than R2014b. Is that correct? This looks like a bug that was fixed ...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
3D scale bar for mesh/surf?
You could start with something like this: function scalebar(xc,yc,zc, w, label) x = [xc, xc-w, nan, xc, xc , nan, xc,...

environ 11 ans il y a | 0

Réponse apportée
plotting isosurfaces in 2013 and 2014 versions
Ah, I've been meaning to write up something about this for the graphics blog. Transparency and the depth sorting technique th...

environ 11 ans il y a | 1

| A accepté

Publié le


Keeling Spiral
The Keeling...

environ 11 ans il y a

Thumbnail

Réponse apportée
Create new isosurface from a isosurface
The simplest way is the following. Let's start with a really simple example: [x y z v] = flow; q = z./x.*y.^3; p =...

environ 11 ans il y a | 1

Réponse apportée
How can I use (and display) two different colormaps on the same figure?
It depends. Are you trying to put the pcolor in the same axes or in different axes. Starting in R2014b, MATLAB has a separate co...

environ 11 ans il y a | 43

| A accepté

Réponse apportée
surf colors with cylinder output
You're creating a lot of cylinders which each have a constant radius? If so, then something like this should work: cla h...

environ 11 ans il y a | 1

| A accepté

Réponse apportée
Is any change 'DisplayName' property in plot function?
When we were rebuilding all of the graphics objects as MATLAB Objects, we found they they had several different variations of co...

environ 11 ans il y a | 9

| A accepté

Réponse apportée
3D animation in MATLAB
I've recently been writing about creating animations on <http://blogs.mathworks.com/graphics/ our graphics blog> . Perhaps some ...

environ 11 ans il y a | 2

Réponse apportée
Setting gca LinestyleOrder but not color order
It doesn't move to the next entry in the LineStyleOrder until it's completed a lap of the ColorOrder. Since you are creating 6 p...

environ 11 ans il y a | 3

| A accepté

Publié le


How the Tiger got its Stripes
But I think that my favorite Turing paper is one he wrote after the war called The Chemical Basis of Morphogenesis. It...

environ 11 ans il y a

Thumbnail

Réponse apportée
How can I arrange several plots in one figure in 3D space?
Consider the following example: [x,y,c] = peaks; g1 = hgtransform('Matrix',makehgtform('translate',[0 0 -0.5])) h1 = ...

environ 11 ans il y a | 1

| A accepté

Réponse apportée
R2014b support for graphic handle error
Did you already try running the tools it referred to in that blog post? <http://www.mathworks.com/products/matlab/matlab-grap...

environ 11 ans il y a | 0

Publié le


Implicit Curves & Surfaces
Implicit Curves and SurfacesIn some earlier posts ( part1, part2) we explored how to draw parametric curves using MATLAB...

environ 11 ans il y a

Thumbnail

Réponse apportée
What happend about my plotting style
What happens if you do the following? get(gca,'FontSize') get(get(gca,'Title'),'FontSize') get(get(gca,'Title'),'Font...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
How can I put the epsilon letter (like the symbol "3" but in the other direction) in xlabel of plot of MatLab R2014b? I try to put '\epsilon' and 'varepsilon' but it doesn't work. Thanks in advance!
Starting in R2014b, you can also use all of the <http://blogs.mathworks.com/loren/2014/10/03/matlab-r2014b-graphics-part-1-featu...

environ 11 ans il y a | 8

Réponse apportée
how to show only a part of a surface fit that falls within a certain polygon
The simplest is to set zData to nan for the points you want to discard. Consider this example: [x,y,z] = peaks; px = [0 ...

plus de 11 ans il y a | 0

| A accepté

Publié le


Area Scaling
Last time we looked at how the performance of MATLAB's graphics system scales with the number of data points. Another...

plus de 11 ans il y a

Thumbnail

Réponse apportée
How to speed up surf plot for thousands of objects ?
Actually the number of points in the surface is probably not a major factor here. That's because the default 20x20 is small enou...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Line marker specifiers duplicated - subplot legend
Are you sure you're not just seeing your plots behind the legend? Things are pretty crowded in that tiny axes. What happens if y...

plus de 11 ans il y a | 2

| A accepté

Réponse apportée
Pixelated text in figures using text() function
There are an awful lot of variables in play during font rasterization. I'd have to know a lot more about what you're doing. Here...

plus de 11 ans il y a | 0

Réponse apportée
Setting Subplot Axes with Alpha Hull
The plot method for alphaShape sets the DataAspectRatio of the axes. You can get the same effect for your other axes by either a...

plus de 11 ans il y a | 1

| A accepté

Publié le


Performance Scaling
Performance ScalingGraphics performance is a complex and interesting field. It's one my group has been spending a lot of our...

plus de 11 ans il y a

Thumbnail

Réponse apportée
drawnow slower in 2014b ?
What's going on here is that in R2014b, the geometry is stored in the GPU's memory. Because you're modifying the XData & YData o...

plus de 11 ans il y a | 3

| A accepté

Réponse apportée
How can I set the Xtick / Ytick labels of my axes with the "Interpreter" as "none" in Matlab 8.4 (R 2014b) Version?
Or you can override the default interpreter: set(gca,'TickLabelInterpreter','none')

plus de 11 ans il y a | 28

Réponse apportée
How to use Camera Views to simulate a real camera
You need to set the Projection to perspective. set(gca,'Projection','perspective') The default is orthographic, which is...

plus de 11 ans il y a | 0

Publié le


Linked Selection
Linked SelectionWhen we create visualizations of data which have multiple values per data point, we need to use different...

plus de 11 ans il y a

Thumbnail

Réponse apportée
plotyy - how to change line width, colour and xaxis labels
Because each of your two plots contains two series, the variable hLine is an array of two line objects. Unfortunately, dot notat...

plus de 11 ans il y a | 0

Réponse apportée
Why is zbuffer no longer available in 2014b? I need it. Thanks!
One of the problems we were trying to fix with the new graphics system was the fact that each of the renderers was missing a bun...

plus de 11 ans il y a | 4

| A accepté

Réponse apportée
R2014b tesselates contour plots when saving to eps
We've been discussing that change in <http://www.mathworks.com/matlabcentral/answers/162257-problem-with-patch-graphics-in-2014b...

plus de 11 ans il y a | 0

Charger plus