photo

Harin Nelumdeniya


自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

  • Thankful Level 2
  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


Creating a matrix with for loop
I need to create a matrix that increases or decreases in size with the change in variable n. The matrix should be having only on...

6 years 前 | 1 个回答 | 0

1

个回答

提问


How can i change the 1st row 1st column and last row last column values in a tridiagonal matrix
n=5; A=zeros(n,n); for i=1:n if (i>1) A(i-1,i)=-100; end A(i,i)=300; if (i<n) A(i+1,...

6 years 前 | 1 个回答 | 0

1

个回答