??? Error using ==> dlmread at 55 Filename must be a string.
Posted
by Tim
on Stack Overflow
See other posts from Stack Overflow
or by Tim
Published on 2010-04-25T12:01:52Z
Indexed on
2010/04/25
12:33 UTC
Read the original article
Hit count: 206
[file_input, pathname] = uigetfile( ...
{'*.txt', 'Text (*.txt)'; ...
'*.xls', 'Excel (*.xls)'; ...
'*.*', 'All Files (*.*)'}, ...
'Select files');
D = uiimport(file_input);
M = dlmread(D);
X = freed(M);
Getting errors with dlmread......"??? Error using ==> dlmread at 55 Filename must be a string."..need to get the data from dlmread to "freed"
© Stack Overflow or respective owner