Veröffentlicht


Signed Distance Fields
Recently I heard from a MATLAB user who was trying to draw tubes along a curve using this blog post I wrote a while back....

etwa 10 Jahre vor

Thumbnail

Gesendet


Making Things Move
Some techniques for getting good performance in 3D animations

etwa 10 Jahre vor | 1 Download |

0.0 / 5

Gesendet


Using MATLAB Graphics from Simulink
A technique for using MATLAB Graphics from a Simulink simulation.

etwa 10 Jahre vor | 1 Download |

0.0 / 5

Beantwortet
How can one remove axis ticks on imagesc but keep labels?
Have you tried setting the length of the ticks to 0? set(gca,'TickLength',[0 0])

etwa 10 Jahre vor | 6

Beantwortet
How to create 3D block graphic?
This should give you some ideas on where to start: w = 2; h = 5; d = 1/4; verts = [-w -h -d; ... w -h...

etwa 10 Jahre vor | 0

Beantwortet
How to create a smoothed histogram and compute it's derivative magnitude in matlab
If you have the <http://www.mathworks.com/products/statistics/ statistics toolbox>, you might want to consider <http://www.mathw...

etwa 10 Jahre vor | 3

Beantwortet
How to plot section of a vector with a condition
I'm not clear on whether you want to connect across the skipped points, or leave them out. Here's an example that illustrates bo...

etwa 10 Jahre vor | 0

| akzeptiert

Beantwortet
How can I calculate the pixel position in a figure-windows of a 3D object in perspective projection?
I'm afraid that it's rather more complex than just getting the view matrix. Let's walk through an example in detail. I'll as...

etwa 10 Jahre vor | 2

| akzeptiert

Beantwortet
How to show different views on different axes ?
The simplest is to just create 4 copies of the scene you've made: set(gcf,'Renderer','zbuffer'); load mri.mat; K = s...

etwa 10 Jahre vor | 0

| akzeptiert

Beantwortet
Volume of 3D polyhedron
One option you might look at is <http://www.mathworks.com/help/matlab/ref/alphashape.html alphaShape>. It's similar to convhull,...

etwa 10 Jahre vor | 4

| akzeptiert

Veröffentlicht


On the Grid
One type of question that I'm often asked is about how to use various visualization techniques with what is sometimes called...

etwa 10 Jahre vor

Thumbnail

Beantwortet
Question about speeding up line plotting
I did <http://blogs.mathworks.com/graphics/2015/06/09/object-creation-performance/ a post on the MATLAB Graphics> blog a while b...

etwa 10 Jahre vor | 0

| akzeptiert

Beantwortet
I want to use unicode transportation symbols on plots.
The syntax is pretty simple. You'll want to use the UTF-16 form, which looks like this: text(.5,.5,['Rocket = ', hex2dec('d...

etwa 10 Jahre vor | 0

| akzeptiert

Beantwortet
How can I realize a surface between two circles plotted in 3D that not have the same centre?
There isn't a built-in for this. There's <http://www.mathworks.com/matlabcentral/fileexchange/21951-cone/content//Cone.m one on ...

etwa 10 Jahre vor | 3

| akzeptiert

Beantwortet
Line through polygon using patch
Patch wants to draw closed polygons. If you don't want the line from the end of the second patch back to the beginning, then the...

etwa 10 Jahre vor | 1

| akzeptiert

Beantwortet
In older versions of Matlab (2014a) when I created multiple plots they appeared one after the other allowing them to be verified briefly before the next appeared. With the new graphics engine (2015a) this is no longer the case, can I get this back?
Add some calls to <http://www.mathworks.com/help/matlab/ref/drawnow.html drawnow>. Before 2014b, there were a lot of cases where...

etwa 10 Jahre vor | 1

| akzeptiert

Beantwortet
How to plot discontinuities with scatteredInterpolant in 3D?
If you have some way of identifying which side of the discontinuity a location is on, then I would set up two scatteredinterpola...

etwa 10 Jahre vor | 1

Beantwortet
contour map from 3-column matrix?
You've got a list of locations and values. Visualizations like contour are showing what happens between the values. To do that, ...

etwa 10 Jahre vor | 1

| akzeptiert

Beantwortet
Legend and for loops
You're saying you call legend([h hh hhh], ...) each time around the loop? That means that each time you're telling lege...

etwa 10 Jahre vor | 1

Beantwortet
Why is not every Marker filled in my Plot
My guess is that the markers are actually behind the filled grey regions, and your SortMethod is depthsort, and your renderer is...

etwa 10 Jahre vor | 1

Beantwortet
Marker size based on value
The help for scatterm says: scatterm(LAT,LON,S,C) displays colored circles at the locations specified by the vectors LAT...

etwa 10 Jahre vor | 0

| akzeptiert

Beantwortet
create mesh from X,Y
No, meshgrid with 3 inputs is going to give you a 3D grid. You still want a 2D grid for surf. I think that you're just trying to...

etwa 10 Jahre vor | 0

Beantwortet
Repositioning multiple subplots - not all plots appearing
If you're setting all of the positions manually, then subplot isn't really doing anything for you. You might consider just calli...

etwa 10 Jahre vor | 2

| akzeptiert

Beantwortet
How to plot plate mode shape with thickness
Here's a simple example that might get you started: thickness = .2; [x,y] = meshgrid(linspace(-3,3,40)); % re...

etwa 10 Jahre vor | 2

Beantwortet
How to color a range of bins in histogram?
Usually the most robust way is to create two separate histogram objects: x = rand(10000,1); mask = x<.5; bin_edges...

etwa 10 Jahre vor | 6

Beantwortet
Insert image behind graph
You can use hold to combine two things in the same axes. And you can set the XData & YData of an image to position. Combining...

etwa 10 Jahre vor | 4

| akzeptiert

Beantwortet
Rotate 3D lines in subplots. How do I use camorbit in subplots ?
Subplot returns a handle to an axes. Camorbit accepts a handle to an axes. So you can connect them together like so: ax = g...

etwa 10 Jahre vor | 0

| akzeptiert

Beantwortet
How to develop MATLAB code for 3D Voronoi in cubical volume?
What have you tried so far? The <http://www.mathworks.com/help/matlab/ref/voronoin.html voronoin function> is the starting point...

etwa 10 Jahre vor | 0

| akzeptiert

Beantwortet
Guide interface is different inside GUIDE and from running in 2015b
Just a guess because there aren't many details here, but have you checked <http://www.mathworks.com/help/matlab/graphics_transit...

etwa 10 Jahre vor | 0

Beantwortet
How do I change the font size for text in my figure?
Yes, this can be confusing. Here's what you're probably seeing: figure % Creates a figure set(gca,'FontS...

etwa 10 Jahre vor | 21

Mehr laden