per-element marker - possible? how to?

Jouni K. Seppänen <jks@...83...> writes:

John Owens <john_owens@...83...> writes:

> plot([1,2,3], [1,4,9], markerlist=['A', 'B', 'C'])
>
> and have it draw the first point with a rendered
> letter 'A', the second with a 'B', and the third with
> a 'C'.

You could do

text(1,1,'A')
text(2,4,'B')
text(3,9,'C')

Quite sensible, thanks!

DW also suggests "You can use the 'hold' command to plot
multiple vectors on the same plot, each with its own marker."

Neither of those is ideal - it would be much nicer to be able
to pass either a {marker list, text list} as an argument to
the plot command directly - but at least the workaround is
reasonable.

JDO