Tejas Sabu
Followers: 0 Following: 0
Feeds
已回答
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
function indices=saddle(M) [m,n] = size (M); indices=[];%we want an empty matrix if there r no saddle points for i=1:m; %goin...
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
function indices=saddle(M) [m,n] = size (M); indices=[];%we want an empty matrix if there r no saddle points for i=1:m; %goin...
4 years 前 | 4
提问
How to assign variable to matrix positions
Given matrix A , assign the second coloumn of A to a varible v. A = [1:5; 6:10; 11:15; 16:20]; i tried using the syms comman...
4 years 前 | 1 个回答 | 0