Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LRT_infinite_dimensional_systems
conI
Commits
8b7a4ae1
Commit
8b7a4ae1
authored
Feb 20, 2020
by
Jakob Gabriel
Browse files
minor bugfix in misc.Backstepping and misc.subsurf
parent
14ef1e9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
+misc/Backstepping.m
View file @
8b7a4ae1
...
...
@@ -251,14 +251,14 @@ classdef Backstepping < handle & matlab.mixin.Copyable
% get grid
if
~
isempty
(
obj
.
kernel
)
&&
~
isempty
(
obj
.
kernelInverse
)
myGrid
=
obj
.
kernel
.
grid
;
if
numel
(
myGrid
{
1
})
<
numel
(
obj
.
kernelInverse
.
grid
{
1
})
myGrid
=
obj
.
kernelInverse
.
grid
;
myGrid
=
obj
.
kernel
(
1
)
.
grid
;
if
numel
(
myGrid
{
1
})
<
numel
(
obj
.
kernelInverse
(
1
)
.
grid
{
1
})
myGrid
=
obj
.
kernelInverse
(
1
)
.
grid
;
end
elseif
~
isempty
(
obj
.
kernel
)
myGrid
=
obj
.
kernel
.
grid
;
myGrid
=
obj
.
kernel
(
1
)
.
grid
;
elseif
~
isempty
(
obj
.
kernelInverse
)
myGrid
=
obj
.
kernelInverse
.
grid
;
myGrid
=
obj
.
kernelInverse
(
1
)
.
grid
;
end
% get domainSelector depending on ojb.integralBounds
...
...
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