Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Subscripted assignment dimension mismatch.

1 回表示 (過去 30 日間)
sihem bk
sihem bk 2018 年 11 月 4 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
i'm trying to write this system:
a=1.07;
b=0.3;
k=2;
x1=[];
x2=[];
x3=[];
x=[];
f(x)=[1-a*((x1)^2)*(k) ; 0 ;0 ];
A=[0 1 0;0.3 0 1;-0.3 0 0];
x=[x1 ; x2 ; x3 ];
k=lenght(x);
x(k+1)= Ax(k)+f(x(k));
figure;
plot(x,k)

回答 (1 件)

Caglar
Caglar 2018 年 11 月 4 日
First of all, f(x) is wrong.
x=[];
f(x)=[1-a*((x1)^2)*(k) ; 0 ;0 ];
x is empty, how can it be an indice? And then, your calculation (right hand side) yields 2-d data. Left side must comply.
x=[1];
f(x,:)=[1-a*((x1)^2)*(k) ; 0 ;0 ];
  3 件のコメント
Caglar
Caglar 2018 年 11 月 4 日
can you write what is your final goal? As @star strider said its not clear.
sihem bk
sihem bk 2018 年 11 月 4 日
編集済み: sihem bk 2018 年 11 月 4 日
mmy goal is to plot this :
and i'm starting from this

この質問は閉じられています。

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by