help-octave
[Top][All Lists]
Advanced

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

Re: octave plotting vs. gnuplot plotting


From: Michael Goffioul
Subject: Re: octave plotting vs. gnuplot plotting
Date: Wed, 27 Jul 2011 08:31:15 +0100

On Wed, Jul 27, 2011 at 12:25 AM, Muhali <address@hidden> wrote:
> For gnuplot I do
>
> gnuplot> set title "What ?" font "Linux Biolinum"
> gnuplot> plot sin(x)
>
> For octave I do
>
> octave:1> plot(0)
> octave:2> text(1, 0, "What?", "fontname", "Linux Biolinum") ;

It should be (for instance):

x = [-10:0.05:10]
plot(x, sin(x))
title("What?")

Michael.


reply via email to

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