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
8664a12e
Commit
8664a12e
authored
Mar 14, 2013
by
Stéphane Adjemian
Browse files
Fixed bug.
parent
f72c4578
Changes
1
Hide whitespace changes
Inline
Side-by-side
matlab/@dynDates/isempty.m
View file @
8664a12e
...
...
@@ -39,7 +39,7 @@ function B = isempty(A)
%
You
should
have
received
a
copy
of
the
GNU
General
Public
License
%
along
with
Dynare
.
If
not
,
see
<
http
:
//www.gnu.org/licenses/>.
B
=
all
(
isnan
(
A
.
time
))
&&
isnan
(
A
.
freq
)
&&
isequal
(
A
.
ndat
,
0
);
B
=
all
(
isnan
(
A
.
time
(
:
)
))
&&
isnan
(
A
.
freq
)
&&
isequal
(
A
.
ndat
,
0
);
%
@test
:
1
%
$
%
Instantiate
an
empty
dynDate
object
...
...
Write
Preview
Supports
Markdown
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