HP Forums

Full Version: CHECK() syntax
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to plot some data from spreadsheet in the 1var statistics app, so I used the following code:

Code:
EXPORT plot()
BEGIN
Statistics_1Var.D1:=C_Gain;
Statistics_1Var.D2:=C_NF;
STARTAPP("Statistics_1Var");
CHECK(1);
CHECK(2);
STARTVIEW(1,1);
END;

But the lines CHECK(); give a syntax error in the iOS app.
Any idea why?

[/php]Steve
It works fine on the real calc with 10077 firmware. Guess the iOS app will get updated at some point.
Have you tried Statistics1Var.CHECK() - just in case it is attempting a different CHECK?
Reference URL's