Risposto
Matlab 2014b: figure() dbstops
It sounds like you have some code which depends on the fact that handles to graphics objects were implemented as doubles in earl...

quasi 12 anni fa | 0

Pubblicato


Bézier Curves
Bézier Curves and Kronecker's Tensor ProductLast time we talked about Martin Newell's famous teapot. Today we're going to...

quasi 12 anni fa

Thumbnail

Risposto
How to move a circle on a sine curve?
Actually the Y component is changing. But it's only changing in the range -1 to 1. Your YLim goes from something like -80 to 80,...

quasi 12 anni fa | 1

| accettato

Risposto
text out on axes
Yes, text has a 'Units' property. If you set this to one of the "screen space" units (I just made that term up), then it is rela...

quasi 12 anni fa | 0

| accettato

Risposto
colourful image labeling by using plot function to generate a scatter plot
I'm not quite sure I follow, but if your CData array looks like: [1, 1, 2, 2, 3, 3, ...] then every pair of markers will...

quasi 12 anni fa | 0

Risposto
Mesh plot with only every nth line plotted?
There isn't a nice automatic way to do it, but it's not too hard. You need 3 surfaces. One for the white background, one for the...

quasi 12 anni fa | 0

| accettato

Risposto
colourful image labeling by using plot function to generate a scatter plot
The scatter command lets you assign a color to each marker using the CData property: h = scatter(r1,r2,'or') set(h,'CDat...

quasi 12 anni fa | 0

Risposto
Canonical method for setting graphics properties in MATLAB 2014b?
If you're writing code which only needs to run in R2014b or later, then the first form (aka "dot notation") is preferred. There ...

quasi 12 anni fa | 1

| accettato

Risposto
Please help I need to rotate a rectangle
In R2014b, you can parent a rectangle object to an hgtransform object and apply a rotation: g = hgtransform r = rectangl...

quasi 12 anni fa | 2

Risposto
Line smoothing in MATLAB2014b
I'm planning to do a post on this soon on our <http://blogs.mathworks.com/graphics/ new graphics blog>. The subject's a bit comp...

quasi 12 anni fa | 1

Risposto
Triangulated Surface Mesh Simplification
Try the <http://www.mathworks.com/help/matlab/ref/reducepatch.html reducepatch command> .

quasi 12 anni fa | 0

| accettato

Risposto
who can create a surf y=0 in a defined domain?
The 3rd arg to surf needs to be 2D. That's optional for the other two. You can use meshgrid to expand your 1D arrays out to 2D l...

quasi 12 anni fa | 0

| accettato

Pubblicato


Welcome. Can you stay for tea?
Welcome to our new blog. My name is Mike Garrity, and I work in the group which develops MATLAB's graphics system. In...

quasi 12 anni fa

Thumbnail

Risposto
Get a plot to automatically load different colors using a matrix
I think your advisor is just referring to the fact that if you give plot a YData array which is an MxN array, then it will plot ...

quasi 12 anni fa | 0

| accettato

Risposto
How to Plot a 3D Ecuation
It might not seem obvious, but the function is isosurface. You've got a function defined in a 3D space and you're looking for th...

quasi 12 anni fa | 1

Risposto
How can i plot a square to my graphs maximum value?
Given a plot you've created using something like this: h = plot(data); Consider this: y = get(h,'YData'); i = fi...

quasi 12 anni fa | 0

Risposto
bar plot loses edge colour
That's the default behavior when the amount of data gets too large. The thinking was that all of those black lines would clutter...

quasi 12 anni fa | 1

| accettato

Risposto
How to add and arrange a text in a plot using commands?
It's hiding in the annotation command. h = annotation('textbox') After you've created it, you can use the set command to...

quasi 12 anni fa | 0

| accettato

Risposto
How to scale a 3D meshed model plot to a certain size?
Another technique you should know about (although it might be overkill for this purpose) is hgtransform. This creates an object ...

quasi 12 anni fa | 0

Risposto
A strange phenomenon for the function surf
The surf command normally does a "view(3)". But when NextPlot is set to add, it doesn't because it thinks you've already got the...

quasi 12 anni fa | 0

| accettato

Risposto
Changing colorscale increments on a surface plot
I'm afraid that the colormap is always applied as a linear function of the CData. Changing the ticks on the colorbar doesn't cha...

quasi 12 anni fa | 1

| accettato

Risposto
Limit number of colormap points in a trisurf
Check your renderer. get(gcf,'Renderer') If it's OpenGL, then you've probably hit a bug in how interpolated color works...

quasi 12 anni fa | 0

| accettato

Risposto
Problem creating axes with subplot
One of the features of subplot is that when it creates a new axes it deletes any old ones which the new one would overlap. If yo...

quasi 12 anni fa | 0

Risposto
Transparency tube section like alpha function
What that's saying is that the size of your AlphaData array isn't the same as the size of your ZData array. They need to match s...

quasi 12 anni fa | 0

Risposto
Surface area of a plane within a cube
> Do you think I could adapt this code to work in 3D? Sure, basically you just change the function Intersection so that it ta...

quasi 12 anni fa | 0

Risposto
Surface area of a plane within a cube
I don't have a code fragment handy, but a simple way to do this is with the Sutherland-Hodgman clipping algorithm. <http://e...

quasi 12 anni fa | 0

| accettato

Risposto
Transparency tube section like alpha function
Assuming you're using surf, perhaps like something this: [a,b]=meshgrid(linspace(0,pi/2,25),linspace(0,2*pi,40)); r1=2; ...

quasi 12 anni fa | 0

Risposto
contour plot for different values
What you're doing looks fine, but I don't know what val1 and val2 were. If I do this: contour(X,Y,mvd,[.04e-3, .12e-3]) ...

circa 12 anni fa | 0

Risposto
Rotating a 3D image?
The simplest way is actually to texture map it onto a flat surface: img=imread('street1.jpg'); surf(0:1,0:1,zeros(2),img...

circa 12 anni fa | 0

| accettato

Risposto
What is the relation between non-integer index and RGB values?
For an indexed image, the RGB values aren't actually in the MAT file. They're in the colormap of your figure. The colormap comma...

circa 12 anni fa | 0

| accettato

Carica altro