using solve app from a program
|
02-17-2018, 03:05 AM
Post: #1
|
|||
|
|||
using solve app from a program
Hi, this the code i've been struggling with (it's pretty basic)
EXPORT TRX_3() BEGIN local a; STARTAPP(solve); a:=solve.solve(E1); //here is the problem print(); print(a); END; //variations i tried: //a:=solve(E1,{X}); //a:=SOLVE(E1,{X}); //a:=Solve(E1,{X}); //a:=Solve.SOLVE(E1,{X}); //a:=solve.SOLVE(E1,{X}); //a:=SOLVE.solve(E1,{X}); //a:=solve(E1); //a:=SOLVE(E1); //a:=Solve(E1); //a:=Solve.SOLVE(E1); //a:=solve.SOLVE(E1); //a:=SOLVE.solve(E1); the content inside E1 is the following: 0.5=(2*E^-3*X)/(1+1*E^-3*X) and the solution that i get directly from the app is x:333.33 |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
using solve app from a program - enriquephilippe - 02-17-2018 03:05 AM
RE: using solve app from a program - chromos - 02-17-2018, 03:18 AM
RE: using solve app from a program - JMB - 02-17-2018, 01:25 PM
RE: using solve app from a program - enriquephilippe - 02-18-2018, 03:35 PM
|
User(s) browsing this thread: 1 Guest(s)