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
0be1b434
Commit
0be1b434
authored
Mar 21, 2013
by
Stéphane Adjemian
Browse files
Fixed typo.
parent
e6a1fbbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
matlab/@dynSeries/mrdivide.m
View file @
0be1b434
...
...
@@ -42,16 +42,16 @@ function A = mrdivide(B,C)
if
isa
(
B
,
'
dynSeries
'
)
&&
isa
(
C
,
'
dynSeries
'
)
%
Element
by
element
divisions
of
two
dynSeries
object
if
~
isequal
(
B
.
vobs
,
C
.
vobs
)
&&
~
(
isequal
(
B
.
vobs
,
1
)
||
isequal
(
C
.
vobs
,
1
))
error
([
'
dynSeries
:
:
times
:
Cannot
add
'
inputname
(
1
)
'
and
'
inputname
(
2
)
'
(
wrong
number
of
variables
)
!
'
])
error
([
'
dynSeries
:
:
times
:
Cannot
divide
'
inputname
(
1
)
'
and
'
inputname
(
2
)
'
(
wrong
number
of
variables
)
!
'
])
end
if
~
isequal
(
B
.
nobs
,
C
.
nobs
)
error
([
'
dynSeries
:
:
times
:
Cannot
add
'
inputname
(
1
)
'
and
'
inputname
(
2
)
'
(
wrong
number
of
observations
)
!
'
])
error
([
'
dynSeries
:
:
times
:
Cannot
divide
'
inputname
(
1
)
'
and
'
inputname
(
2
)
'
(
wrong
number
of
observations
)
!
'
])
end
if
~
isequal
(
B
.
freq
,
C
.
freq
)
error
([
'
dynSeries
:
:
times
:
Cannot
add
'
inputname
(
1
)
'
and
'
inputname
(
2
)
'
(
frequencies
are
different
)
!
'
])
error
([
'
dynSeries
:
:
times
:
Cannot
divide
'
inputname
(
1
)
'
and
'
inputname
(
2
)
'
(
frequencies
are
different
)
!
'
])
end
if
~
isequal
(
B
.
init
,
C
.
init
)
error
([
'
dynSeries
:
:
times
:
Cannot
add
'
inputname
(
1
)
'
and
'
inputname
(
2
)
'
(
initial
dates
are
different
)
!
'
])
error
([
'
dynSeries
:
:
times
:
Cannot
divide
'
inputname
(
1
)
'
and
'
inputname
(
2
)
'
(
initial
dates
are
different
)
!
'
])
end
A
=
dynSeries
();
A
.
freq
=
B
.
freq
;
...
...
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