Update README
This commit is contained in:
parent
bc0eec02fe
commit
e72c40ca22
@ -124,6 +124,10 @@ using (var fileStream = new System.IO.FileStream("output.mat", System.IO.FileMod
|
|||||||
writer.Write(matFile);
|
writer.Write(matFile);
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
By default, all variables are written in a compressed format; you can turn that off by using another constructor for `MatFileWriter`:
|
||||||
|
```csharp
|
||||||
|
var writer = new MatFileWriter(fileStream, new MatFileWriterOptions { UseCompression = CompressionUsage.Never });
|
||||||
|
```
|
||||||
|
|
||||||
Another option is to create a file from scratch. You can do it with `DataBuilder` class:
|
Another option is to create a file from scratch. You can do it with `DataBuilder` class:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user