Feeds
답변 있음
Matlab function to take matrix as input and return elements in its four corners as output
function [top_left,top_right,bottom_left,bottom_right]= corners (A) top_left= A(1,1) top_right= A(1,end) bottom_left=A(end,1)...
Matlab function to take matrix as input and return elements in its four corners as output
function [top_left,top_right,bottom_left,bottom_right]= corners (A) top_left= A(1,1) top_right= A(1,end) bottom_left=A(end,1)...
6년 초과 전 | 0
