Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dóra Kocsis
dynare
Commits
f16a8b16
Commit
f16a8b16
authored
Mar 22, 2013
by
Ferhat Mihoubi
Browse files
indicates the endline code for various environments
parent
8531d994
Changes
1
Hide whitespace changes
Inline
Side-by-side
matlab/load_csv_file_data.m
View file @
f16a8b16
...
...
@@ -107,12 +107,21 @@ fclose(fid);
%
Set
newline
code
(
ok
for
*
nix
,
check
for
mac
and
windows
)
if
isunix
newline_code
=
10
;
elseif
ispc
newline_code
=
13
;
elseif
ismac
newline_code
=
10
;
else
error
(
'
readcsv
::
Not
implemented
for
your
OS
!
'
)
end
%
Get
the
positions
of
the
end
-
of
-
line
code
;
end_of_line_locations
=
find
(
bfile
==
newline_code
);
if
ispc
&&
isempty
(
end_of_line_locations
)
newline_code
=
10
;
end_of_line_locations
=
find
(
bfile
==
newline_code
);
end
;
tmp
=
find
(
bfile
==
newline_code
);
%
Get
the
number
of
lines
in
the
file
.
...
...
@@ -138,7 +147,7 @@ if withnames
varlist
=
cell
(
length
(
B
),
1
);
number_of_variables
=
length
(
varlist
);
for
i
=
1
:
number_of_variables
varlist
(
i
)
=
{
linee
(
B
(
i
)
:
C
(
i
))};
varlist
(
i
)
=
{
strtrim
(
linee
(
B
(
i
)
:
C
(
i
))
)
};
end
linea
=
linea
+
1
;
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment