![]() |
cmd_logistic | Function (ROM Call 0x360) |
AMS 1.01 or higher | bascmd.h |
void cmd_logistic (ESI RegData); |
Executes TI-Basic 'Logistic' command.
cmd_logistic calculates a logistic regression and updates all statistics
variables (see TI-Basic manual for more info). The RegData parameter
must point to a structure on the expression stack which describes where the
actual data is stored. This structure may have one of the following eight
layouts (RegData should point to the last item):
NOTHING_TAG NOTHING_TAG NOTHING_TAG NOTHING_TAG y_list_name x_list_name |
NOTHING_TAG NOTHING_TAG NOTHING_TAG iterations y_list_name x_list_name |
NOTHING_TAG NOTHING_TAG freqs_name NOTHING_TAG y_list_name x_list_name |
NOTHING_TAG NOTHING_TAG freqs_name iterations y_list_name x_list_name |
END_TAG categories_list LIST_TAG categories_name NOTHING_TAG NOTHING_TAG y_list_name x_list_name |
END_TAG categories_list LIST_TAG categories_name NOTHING_TAG iterations y_list_name x_list_name |
END_TAG categories_list LIST_TAG categories_name freqs_name NOTHING_TAG y_list_name x_list_name |
END_TAG categories_list LIST_TAG categories_name freqs_name iterations y_list_name x_list_name |