The following warnings occurred:
Warning [2] Trying to access array offset on value of type null - Line: 4475 - File: inc/functions.php PHP 8.0.30 (Linux)
File Line Function
/inc/functions.php 4475 errorHandler->error
/inc/class_session.php 505 my_strlen
/inc/class_session.php 360 session->create_session
/inc/class_session.php 75 session->load_guest
/global.php 55 session->init
/printthread.php 17 require_once
Warning [2] Undefined variable $mybb - Line: 183 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 183 errorHandler->error
/printthread.php 63 makeprintablenav
Warning [2] Attempt to read property "settings" on null - Line: 183 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 183 errorHandler->error
/printthread.php 63 makeprintablenav
Warning [2] Trying to access array offset on value of type null - Line: 183 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 183 errorHandler->error
/printthread.php 63 makeprintablenav
Warning [2] Undefined variable $forums - Line: 183 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 183 errorHandler->error
/printthread.php 63 makeprintablenav
Warning [2] Undefined variable $mybb - Line: 183 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 183 errorHandler->error
/printthread.php 187 makeprintablenav
/printthread.php 63 makeprintablenav
Warning [2] Attempt to read property "settings" on null - Line: 183 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 183 errorHandler->error
/printthread.php 187 makeprintablenav
/printthread.php 63 makeprintablenav
Warning [2] Trying to access array offset on value of type null - Line: 183 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 183 errorHandler->error
/printthread.php 187 makeprintablenav
/printthread.php 63 makeprintablenav
Warning [2] Undefined variable $forums - Line: 183 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 183 errorHandler->error
/printthread.php 187 makeprintablenav
/printthread.php 63 makeprintablenav
Warning [2] Undefined array key 4 - Line: 184 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 184 errorHandler->error
/printthread.php 187 makeprintablenav
/printthread.php 63 makeprintablenav
Warning [2] Trying to access array offset on value of type null - Line: 1229 - File: inc/functions.php PHP 8.0.30 (Linux)
File Line Function
/inc/functions.php 1229 errorHandler->error
/printthread.php 72 forum_permissions
Warning [2] Trying to access array offset on value of type null - Line: 1229 - File: inc/functions.php PHP 8.0.30 (Linux)
File Line Function
/inc/functions.php 1229 errorHandler->error
/printthread.php 72 forum_permissions
Warning [2] Undefined array key "canonlyviewownthreads" - Line: 78 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 78 errorHandler->error
Warning [2] Undefined array key "page" - Line: 86 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 86 errorHandler->error
Warning [2] Undefined variable $multipage - Line: 24 - File: printthread.php(163) : eval()'d code PHP 8.0.30 (Linux)
File Line Function
/printthread.php(163) : eval()'d code 24 errorHandler->error
/printthread.php 163 eval



jWork.ORG forums
Step wise Equation Solving - Printable Version

+- jWork.ORG forums (https://jwork.org/forum)
+-- Forum: DataMelt (/forumdisplay.php?fid=1)
+--- Forum: Discussion of new DataMelt features (/forumdisplay.php?fid=4)
+--- Thread: Step wise Equation Solving (/showthread.php?tid=75)



Step wise Equation Solving - mathemagic12 - 07-05-2015 08:56 PM

I was writing a program to obtain the results of a linear quadratic equation and i used the jhplot.math.Numeric class to compute the results. I was wondering if i could

a) solve quadratic equation in a step by step fashion storing intermediate results.

for example :
x2-4x+3=0
x2-3x-x+3=0
x(x-3)-1(x-3)=0
(x-1)(x-3)=0
x=1 and x=3

b) plot the quadratic equation as a graph in 2d space.

I am using the data melt one jar file to write the program in java and am a newbie.

Any help in this regard would be much appreciated.

thanks.


RE: Step wise Equation Solving - sergei175 - 07-13-2015 11:47 AM

Hello,

I'm not sure about intermediate steps, but to solve and
[/code][/php]plot quadratic equations are easy:

Code:
from jhplot.math.Numeric import *
b=solveQuadratic(1, 2, -1) #a=1, b=2, c=-1
print b.tolist()
from jhplot import *
c=HPlot()
c.visible()
c.setAutoRange()
f=F1D("x**2+2*x-1",-5,5)
c.draw(f)

Also, check Apache common math included into the package

best, Sergei

(07-05-2015 08:56 PM)mathemagic12 Wrote:  I was writing a program to obtain the results of a linear quadratic equation and i used the jhplot.math.Numeric class to compute the results. I was wondering if i could

a) solve quadratic equation in a step by step fashion storing intermediate results.

for example :
x2-4x+3=0
x2-3x-x+3=0
x(x-3)-1(x-3)=0
(x-1)(x-3)=0
x=1 and x=3

b) plot the quadratic equation as a graph in 2d space.

I am using the data melt one jar file to write the program in java and am a newbie.

Any help in this regard would be much appreciated.

thanks.