help-octave
[Top][All Lists]
Advanced

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

Re: Plot the function error


From: Stefan Neumann
Subject: Re: Plot the function error
Date: Fri, 26 Mar 2010 22:23:22 +0100



2010/3/26 Abdul Rahman Riza <address@hidden>
Actually I want to plot the function 1:((206:x)+5.2+1.7*x)) from x=0 until x=26



Hi Riza,

perhaps you meant   "1/((206/x)+5.2+1.7*x)) from x=0 until x=26"  ?


If that is the case, then try like this:

octave:1> x=0:.1:26;
octave:2> plot(x,1./((206./x)+1.7*x+5.2));


Stefan

reply via email to

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