|
Contents | Previous | Next | Subchapters |
| Syntax |
name |
| See Also | include , mlmode_mode |
.oms
is searched for.
In Mlmode
,
the file name.m
is searched for.
temp.oms in the current directory
consists of the following text
begin
x = seq(3)
temp = x * x'
end
and you enter
clear
print temp
O-Matrix will respond
{
[ 1 , 2 , 3 ]
[ 2 , 4 , 6 ]
[ 3 , 6 , 9 ]
}
In addition, a message informing you of the automatic include
of the file temp.oms is printed in the Debugger window.
omatrix file name
can be used to execute the corresponding file in O-Matrix mode.
This syntax is described in more detail
in the File Name
heading of the
Switching Between Mlmode And O-Matrix Mode section.
include command should be used by library files
that want to reference another file in the library and not in the
current working directory.