How to write N*1 Matrix with M-1 element

4 次查看(过去 30 天)
How to write N*1 Matrix with M-1 element and find the Ax = b lineer system of equation
t(1)=0;
k=.01
N=1/k
h=1.5;
z=k/h;
m=k/h^2;
M=60/h
S(1)=70;
sigma=.1;
r=0.12;
K=100;
for i=2:M
S(i+1)=S(i)+h;
end
for j=2:N
t(j+1)=t(j)+k;
end
for i=1:M
alpha(i)=sigma^2*m*S(i)^2
beta(i)=r*(z/2)*S(i)
end
% v(i)=[(1-alpha(i))]
% y(i)=[(beta(i)+(alpha(i)/2))]
% z(i)=[((alpha(i)/2)-beta(i))]
for i=1:M
A=full(gallery('tridiag',M,(1-alpha(i)),(beta(i)+(alpha(i)/2)),((alpha(i)/2)-beta(i))))
end
  2 个评论
Rik
Rik 2019-4-16
Your question is still unclear to me. The part ending with a question mark doesn't seem to have a lot to do with the rest of your question.
Can you explain a bit further what you mean?
Cagin Keskin
Cagin Keskin 2019-4-16
I am trying to apply finite difference method with lineer system equation Ax = b but ı dont know how to write x and b code on matlab
WhatsApp Image 2019-04-16 at 11.52.10(1).jpeg

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by