Hi JokerOne,
> Is there a LabTalk Command that provides the root of a polynom-equation, like
> 3x^3 -7.1527x = 0
To solve this numerically, the following should do that task:col(1)=data(-100,100, 0.05);
col(2)=3*col(1)^3 -7.1527*col(1);
levelcrossing iy:=col(2) level:=0;
Hope this helps.
--Hideo Fujii
OriginLab