help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Octave plot with multiple colors in one plt


From: Ben Abbott
Subject: Re: Octave plot with multiple colors in one plt
Date: Thu, 24 Jul 2014 19:14:34 -0400

On Jul 24, 2014, at 3:38 PM, Octavity <address@hidden> wrote:

> I'm having quite a hard time getting the program to plot while rotating
> colors. I've used all the examples shown online and nothing seems to work.
> when i type "help colororder" on the browser, it says it is undefined;
> however, it will show when i type "get(gca,'colororder')). 
> 
> My code is a one line sentence
> 
> 
> plot (t,deltaT,'c'). t and deltaT are 1 x 5002 dimension. The legend
> assigned to this plot may have 10 graphs in one plot or figure.

The 'c' part is telling Octave to plot all lines with the color cyan.

Try ...

        plot (t, deltaT)

Ben



reply via email to

[Prev in Thread] Current Thread [Next in Thread]