LOOK Command
The LOOK command displays all or part of the current model. The syntax of the LOOK command is:
LOOK row_index | beg_row_index end_row_index | ALL
Thus, you can specify the index of a single row to view, a range of rows, or ALL to view the entire model.
In this next example, we use several forms of the LOOK command to view the current model:
: LOOK ALL
1]!For a given probability P, this
2] model returns the value X such
3] that the probability that a unit
4] normal random variable is less
5] than or equal to X is P;
6]
7]! Here is the probability;
8] P = .95;
9]
10]! Solve for X;
11]P = @PSN( X);
12]
: LOOK 8
8] P = .95;
: LOOK 10 11
10]! Solve for X;
11]P = @PSN( X);
: