|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
F=ones(449,672);H=ones(449,672);C=ones(449,672);E=ones(449,672);
>> X=ones(449,672);
G=99.0629;
D= 100.9371;
for j=449:671
X(1,j) =[F(1,j-1)*X(1,j-1)+G*X(1,j)+H(1,j+1)*X(1,j+1) -C(448,j)*X(448,j) -E(2,j)*X(2,j)]/ D;
end
??? In an assignment A(matrix,matrix) = B, the number of columns in B
and the number of elements in the A column index matrix must be the same.
[ 本帖最后由 ChaChing 于 2010-4-4 21:08 编辑 ] |
|