ZCubes/Evaluate Algebraic Functions

From ZCubes Wiki
Revision as of 01:20, 11 March 2021 by Jayaram (talk | contribs) (→‎Code)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Evaluate Algebraic Functions


In ZCubes you can evaluate Algebraic expressions by calling the ALGEBRA function and passing the expression as a parameter. These can be then converted to functions and executed for set of parameter values.

Video


Evaluate Algebraic Functions














Code

ALGEBRA("(a+b)^2")
ALGEBRA("(a+b)*(a-b)");
FUNCT(ALGEBRA("(a+b)*(a-b)"))
Function1=FUNCT(ALGEBRA("(a+b)*(a-b)"));
Function1(3,4)
FUNCT("[x^2,x^3,x^4]");
FunctionArray= FUNCT("[x^2,x^3,x^4]");
FunctionArray#;
FunctionArray(3..10)
(1..10)@(x=>EXPAND("(a+b)^x"));
(1..10)@(x=>EXPAND("(a+b)^"+x));
(1..10)@(x=>EXPAND("(a+b)^"+x)).$(FUNCT);




© Copyright 1996-2021, ZCubes, Inc.