how to write JSL script for basic equations, and then make an overlay plot out of it?
I have several points defined in an JSL script and running that would generate a table and also overlay plots for each point.Say I have point1, point2, point3I want to define thatRATIO1 = point1*100/(point1+point2+point3)RATIO2 = point2*100/(point1+point2+point3)RATIO3 = point3*100/(point1+point2+point3)Then plot overlay of RATIO1, RATIO2, RATIO3 versus timestamp.I tried to use Assign(RATIO1, poin...