[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: .MAT files cannot be loaded
From: |
Andreas Weber |
Subject: |
Re: .MAT files cannot be loaded |
Date: |
Fri, 04 Dec 2015 11:53:10 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.8.0 |
Am 04.12.2015 um 11:38 schrieb Jonathan Camilleri:
> Still there is a problem.
>>> addpath (fullfile ("C:", "Users", "Administrator, "Downloads"))
> parse error:
>
> syntax error
You have to include all strings in single or double quotes. See your
string Administrator, the closing double quote is missing.
>>> addpath("C:/Users/Administrator/Downloads")
>>> load("._irisData.mat")
> ...
> error: load: unable to determine file format of '._irisData.mat'
This tells you that GNU Octave isn't able to determine its format. If I
use "file" I see:
$ file ._irisData.mat
._irisData.mat: AppleDouble encoded Macintosh file
which leads me to
https://en.wikipedia.org/wiki/AppleSingle_and_AppleDouble_formats
What program was used to create the file you are trying to load?
- .MAT files cannot be loaded, Jonathan Camilleri, 2015/12/03
- Re: .MAT files cannot be loaded, Helios de Rosario, 2015/12/04
- Re: .MAT files cannot be loaded, Carlo De Falco, 2015/12/04
- Re: .MAT files cannot be loaded, Jonathan Camilleri, 2015/12/04
- Re: .MAT files cannot be loaded, Carlo De Falco, 2015/12/04
- Re: .MAT files cannot be loaded, Helios de Rosario, 2015/12/04
- Re: .MAT files cannot be loaded, Carlo De Falco, 2015/12/04
- Re: .MAT files cannot be loaded, Jonathan Camilleri, 2015/12/04
- Re: .MAT files cannot be loaded,
Andreas Weber <=