Statistics
3 Questions
0 Answers
RANK
219,896
of 301,440
REPUTATION
0
CONTRIBUTIONS
3 Questions
0 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
0
RANK
of 21,282
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 174,580
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
How do I solve a discrete systems? I got an error message
clear clc K=[1.1/9 0.7/3]; L=[-2 1 1 0;1 -2 1 0;1 1 -3 1;0 0 1 -1]; gamma=0.9999999 A=[0.5 0.3;0.3 0.9]; B=[0;1...
9 years ago | 1 answer | 0
1
answerQuestion
How do I solve this discrete systems? I got an error message, Error in fun_dynamic_quant (line 9) [t,X]=ode45(@(t,x) solver_dynamic_systems(t,x),[t1],[IC],options); Error in quant (line 9) [t,X]=fun_dynamic_quant(t1,x0,L,A,B,K);
function [t,X]=fun_dynamic_quant(t1,x0,L,A,B,K) IC=x0; tp=t1; Im=eye(4); T=kron(L,B*K) Lk=(kron(Im,A)+T); options=odeset('...
9 years ago | 0 answers | 0
0
answersQuestion
ode45 - return a column vector
Below is the function I have described: function xdot=consensus2016_ob(t,x) A=[-2 2;-1 1]; B=[1;0]; C=[1 0]; K=[-1 2]...
10 years ago | 1 answer | 0