Unable to save file for Quiver

3 views (last 30 days)
SC
SC on 19 Apr 2019
Answered: Walter Roberson on 19 Apr 2019
Hi,
I have a quiver but I'm unable to save it by using imwrite? What should I do? (the function imwrite would be more preferable than the other function for saving).
Many thanks!
[x,y] = meshgrid(0:0.2:2,0:0.2:2);
u = cos(x).*y;
v = sin(x).*y;
figure
result=quiver(x,y,u,v);
imwrite(result, 'simpleresult.png');

Answers (1)

Walter Roberson
Walter Roberson on 19 Apr 2019
You can never imwrite() a graphics object, including not even if it is an image.
Some kinds of graphics objects (such as images) you can pull out matrices of data that you can then (possibly process) and then imwrite(). You could pull out the XData and YData and UData and VData matrices from the quiver object and use tools from the Computer Vision Toolbox to recreate the quiver plot into an array. But that is a bunch of work.
What you probably want to do is use is getframe() the axes, and use frame2im() and then imwrite() the image that results.

Categories

Find more on Vector Fields in Help Center and File Exchange

Products


Release

R2016a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!