diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-05-11 14:07:58 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-05-11 14:07:58 +0200 |
commit | 50f23e5f789def15f59fe3fa8aab24b134d3a518 (patch) | |
tree | 369b117d14ae757ae844cf0ed83d2ba83dd56aff | |
parent | ed914c08a50d829b6dba63b768b33315e5f6e8a1 (diff) | |
download | dmc-50f23e5f789def15f59fe3fa8aab24b134d3a518.tar.gz dmc-50f23e5f789def15f59fe3fa8aab24b134d3a518.tar.bz2 dmc-50f23e5f789def15f59fe3fa8aab24b134d3a518.zip |
get_products: Force the use of ascii
Just to be sure.
-rw-r--r-- | get_products.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/get_products.m b/get_products.m index b861e15..11403dc 100644 --- a/get_products.m +++ b/get_products.m @@ -1,5 +1,5 @@ function [A,B] = get_products() - load train_noheader.csv; + load('-ascii', 'train_noheader.csv'); A = zeros(42, 570); B = zeros(42, 570); |