SYED ABOU ILTAF HUSSAIN
Followers: 0 Following: 0
Feeds
提问
Assigning elements for a matrix.
Let us consider three matrix A = [a11, a12, a13, a14; a21, a22, a23, a24; a31, a32, a33, a34] B = [b11; b21; b31] C =...
6 years 前 | 1 个回答 | 0
1
个回答已回答
How to assign elements in matrix after satisfying certain constraint?
Thank you everyone for your help
How to assign elements in matrix after satisfying certain constraint?
Thank you everyone for your help
6 years 前 | 0
提问
How to assign elements in matrix after satisfying certain constraint?
How to create a m*n matrix such that the sum of the first (m-1) elements must be less than or equal to the mth element and also ...
6 years 前 | 1 个回答 | 0
1
个回答已回答
How do I create a (10,10) matrix containing numbers from 1 to 100?
Try this a= [1:10]; for i=2:10 a(i,:)=a(i-1,:)+10; end
How do I create a (10,10) matrix containing numbers from 1 to 100?
Try this a= [1:10]; for i=2:10 a(i,:)=a(i-1,:)+10; end
6 years 前 | 1