MatlabR2014b no more circle market type in plot

7 Ansichten (letzte 30 Tage)
Maria
Maria am 24 Okt. 2014
Bearbeitet: free5721 am 21 Nov. 2018
Hi,
I had the following plot
plot(A(i,j),'linestyle','o')
that was perfectly working on Matlab R2013b. I have installed Matlab R2014b and it gives me the following error
Error using plot 'o' is not a valid value. Use one of these values: '-' | '--' | ':' | '-.' | 'none'.
Is not anymore available the circle marker type?
Best,
Maria
  4 Kommentare
free5721
free5721 am 14 Apr. 2018
Bearbeitet: free5721 am 15 Apr. 2018
Windows 7 64-bit. Also, the o marker works when I run R2015b 32-bit on the same computer.
free5721
free5721 am 21 Nov. 2018
Bearbeitet: free5721 am 21 Nov. 2018
Update: I have figured out the problem why my plot circles markers weren't apprearing and plot asterisks, triangles, etc markers were only half appearing. It was because the graphics capability of the my computer is now consired "low-level" by MATLAB R2018a and it is no longer compatible. I am now running OpenGL graphics.
I used the command: opengl('save','software') to fix the problem.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Image Analyst
Image Analyst am 24 Okt. 2014
'o' is not a linestyle, it's a marker. Perhaps you were doing this before
plot(A(i,j), 'bo-');
  1 Kommentar
Maria
Maria am 24 Okt. 2014
Removing 'linestyle' and using 'bo' I solved the problem! Thank you for your tip! Before I should say the code was exactly the same and it was working, I run it with R2013b and today with R2014b so I am sure it was working. But now the problem is solved! Thanks!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Mike Garrity
Mike Garrity am 24 Okt. 2014
I think that R2013b was actually one of the last releases where this worked, although I think that it did issue a warning the first time you hit it in that release. The message looked something like this:
Warning: Setting marker type based on 'LineStyle' property
'Marker' and 'LineStyle' have been made separate properties
Use 'Marker' property to remove this warning
Way back, the marker style was part of the line style, but they got broken into separate properties for flexibility. I don't remember which release that happened in, but it was quite a ways back. When we did that, we slowly deprecated support for the old form. That's now completely gone.
There are actually two ways to do this now. One is to use the new name for the marker half of the property.
plot(A(i,j),'Marker','o')
The other, as Image Analyst said, is to use the "linespec" feature.
plot(A(i,j),'o')
This is an optional string which lets you code color, linestyle, and marker in one short argument instead of listing all of the different properties.
  1 Kommentar
Maria
Maria am 24 Okt. 2014
Thank you for your complete answer, I have just read it.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Graphics Performance finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by