From b7b589189c81c465055f3b0c5a3e668814576be8 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Tue, 11 Dec 2012 16:04:26 -0500 Subject: [PATCH] Make it clearer that matwrite() takes a string as its first argument --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 135562b..7e4d80d 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ vars = matread("matfile.mat") To write a Dict to a MAT file, using its keys as variable names: ```julia -matwrite(file, { +matwrite("matfile.mat", { "myvar1" => 0 "myvar2" => 1 })