bala maths
Followers: 0 Following: 0
Feeds
提问
How to find sum of row vector and check this is equal to 0?
A = [0 1 0 0 0 1 ; 1 0 1 0 0 0 ; 0 1 0 1 0 0 ; 0 0 1 0 1 0; 0 0 0 1 0 1 ; 1 0 0 0 1 0]; B = [1; 2; 3; -3; -2; -1]; C = per...
2 years 前 | 2 个回答 | 0
2
个回答提问
In the following in program, I want print only the resultant Matrix D which its sum is zero also their corresponding combinations Matrix E a using any conditional statements
A = [0 1 0 0 0 1 ; 1 0 1 0 0 0 ; 0 1 0 1 0 0 ; 0 0 1 0 1 0; 0 0 0 1 0 1 ; 1 0 0 0 1 0]; B = [1; 2; 3; -3; -2; -1]; C = perms...
2 years 前 | 1 个回答 | 0
1
个回答提问
in the following MATLAB Programme, I want print the resultant Matrix D with two conditions i) D has exactly one Zero ii) D with exactly two pairs like as (-x, x) and (-y, y)
A = [0 1 0 0 1 ; 1 0 1 0 0 ; 0 1 0 1 0 ; 0 0 1 0 1 ; 1 0 0 1 0] B = [-1 -2 1 2 0]; C = perms (B); E=C D=C*A
3 years 前 | 1 个回答 | 0