|
Contents | Previous | Next | Subchapters |
| Syntax |
read(file, mtype, nr, nc, nSkip)
|
| See Also | read(file, mtype) , read(file, mtype, nr, nc, nSkip, separator) |
sample.dat that contains
Sample Data
One Two Three
1.1 1.2 1.3
2.1 2.2 2.3
and you enter,
clear
file = "sample.dat"
read(file, "real", 2, 3, 2)
O-Matrix will respond,
{
[ 1.1 , 1.2 , 1.3 ]
[ 2.1 , 2.2 , 2.3 ]
}