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