Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
Homogeneous Artificial Neural Networks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
POLYAKOV Andrey
Homogeneous Artificial Neural Networks
Commits
1d2e94d8
Commit
1d2e94d8
authored
1 year ago
by
POLYAKOV Andrey
Browse files
Options
Downloads
Patches
Plain Diff
Update rhs.m
parent
0ffa09f9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Demos for MATLAB/Example_2_dyn_system/rhs.m
+2
-1
2 additions, 1 deletion
Demos for MATLAB/Example_2_dyn_system/rhs.m
with
2 additions
and
1 deletion
Demos for MATLAB/Example_2_dyn_system/rhs.m
+
2
−
1
View file @
1d2e94d8
function
w
=
rhs
(
x
)
%the right hand side of the dynamical system
w
=
x
(
1
:
3
,
1
);
tau
=
x
(
4
:
6
,
1
);
J
=
[
1
0.3
0.2
;
0.3
1.2
0.5
;
0.2
0.5
0.8
];
iJ
=
[
1.09230769230769
-
0.215384615384615
-
0.138461538461538
;
-
0.215384615384615
1.16923076923077
-
0.676923076923077
;
-
0.138461538461538
-
0.676923076923077
1.70769230769231
];
%M=[1 0.1 -2 0; 0 2 -1 0; 0.2 1 3 -1;0 0 0 -4];
w
=
iJ
*
([
0
-
w
(
3
)
w
(
2
);
w
(
3
)
0
-
w
(
1
);
-
w
(
2
)
w
(
2
)
0
]
*
J
*
w
+
tau
);
\ No newline at end of file
w
=
iJ
*
([
0
-
w
(
3
)
w
(
2
);
w
(
3
)
0
-
w
(
1
);
-
w
(
2
)
w
(
2
)
0
]
*
J
*
w
+
tau
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment