필터 지우기
필터 지우기

Matlab scatter produces hexagonal symbols instead of circles

조회 수: 5 (최근 30일)
F Poelwijk
F Poelwijk 2016년 2월 3일
댓글: Hassan 2019년 12월 26일
I am trying to export a scatter plot to eps, but instead of round symbols I get hexagons (same issue with export to pdf or png). My Matlab version is 2015a, and I am using this command:
scatter(X,Y,15,[redcol greencol bluecol],'o','filled');
print(figurename,'-depsc','-r600');
The amount of points in X and Y is around 8000.
Is this a bug?

답변 (8개)

Pete
Pete 2016년 8월 26일
I just wanted to comment that this is ridiculous. I'm having to go back to a 2012 release to make decent looking plots. And then I have to rewrite all my code.

Kiran
Kiran 2016년 2월 10일
Starting from R2014b the entire graphics engine was reimplemented. While R2014b graphics makes most of the graphics better it also has some issues, for example, extracting images with circular shaped markers in EPS or PDF file format.
The development team is already aware of this issue and they are considering fixing this for a future release of MATLAB. Unfortunately, at the present moment there is no workaround for this.
The two possible things that the user can do is:
1. Use a different marker shape in MATLAB releases R2014b onwards; or
2. Use prior releases than R2014b.

Jonathan Pillow
Jonathan Pillow 2016년 9월 12일
This is an unbelievably irritating bug. Scatter plots look horrible with these little hexagons instead of circles. I can't believe there isn't any way to use circles (or even a better approximation to a circle) as plotting symbols. The current results are visually terrible.
MATLAB, you seem to be trying your hardest to drive your users into the arms of Python.
  댓글 수: 1
Pete
Pete 2016년 10월 7일
I agree - unbelievably irritating, and 4 releases later there is still no fix. When making publication quality figures for journals, the circular marker is STANDARD in all types of figures. This MUST be fixed.

댓글을 달려면 로그인하십시오.


Sandor Toth
Sandor Toth 2016년 10월 28일
This is indeed extremely annoying. A little help though, I attached an Adobe Illustrator script that can change all selected polygons to circles with the same properties and area. Just rename the file to .jsx (you can check the content of the file if unsure if it is safe) and use the "Script" menu in Adobe to run it on selected objects. Tested in Adobe Illustrator CS6.

Jackson
Jackson 2019년 7월 9일
편집: Jackson 2019년 7월 9일
Hi F Poelwijk,
Just two points, here. First is to confirm that Sandor Toth's .jsx script works very nicely to convert hexagons into proper circles in Adobe Illustrator CS6.
The second is that Matlab 2015b (and maybe others) will save points as proper circles circles in PDF files. For example, plot some test data:
plot ( 1 : 100 , rand( 100 , 1 ) , '.' )
See that we're using the '.' marker instead of the 'o' marker? Now save your figure as a PDF and you should get circles. Afterwards, you can use something like Adobe Illustrator to flip from filled circles to empty circles by selecting your data points and using the swap line/fill colour button.
Cheers!
Jackson
  댓글 수: 1
Djalma Santos
Djalma Santos 2019년 10월 5일
Thanks Jackson!
I've just realized that if print a dot ('.') and change its size, I get a proper vectorial circle.
plot ( 1 : 100 , '.' ,'MarkerSize',10)
Djalma

댓글을 달려면 로그인하십시오.


Reed Teyber
Reed Teyber 2016년 12월 6일
Any update?
I do love Matlab, but I am a bit unimpressed with plotting in matlab versus the open source competitors (i.e. matplotlib or gnuplot)

Image Analyst
Image Analyst 2016년 12월 6일
For me they look like circles on the screen:
I didn't print to paper. Maybe your printer resolution is set low, like 75 dpi or 300 dpi or something.
Try specifying different renderers. In print(), specify the renderer as either '-painters' or '-opengl'. Maybe one is better than the other.
If your printer can handle it, specify a higher resolution, like -r2400.
  댓글 수: 1
Pierre-Pascal
Pierre-Pascal 2017년 5월 23일
Save it as pdf or eps, any vectorial format you use for publication and see how it looks like: crap

댓글을 달려면 로그인하십시오.


Gabriel Piedrafita
Gabriel Piedrafita 2019년 2월 13일
I have never experienced this issue with the standard 'plot' command. Don't you get essentially the same graphs turning off the lines connecting the data points? That is why I never use 'scatter'.
plot(rand(10,10),'ko','MarkerFaceColor','k')
  댓글 수: 2
Rick
Rick 2019년 2월 14일
I think this bug was finally fixed in the most recent releases, after having lingered for years. I stopped paying for a license because I was stuck using 2013b. When I realized the bug had been fixed in 2018 I learned that to renew the licence I had to pay the license fee for all the years during which I couldn't use Matlab. So, I've been getting comfortable with R and Python.
Hassan
Hassan 2019년 12월 26일
I agree..! no matlab any more

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by