Why do lines 1 and 2 create a matrix?
1 回表示 (過去 30 日間)
古いコメントを表示
Crystal Judd Unson
2021 年 4 月 25 日
コメント済み: Crystal Judd Unson
2021 年 4 月 25 日
Hi, I'm new to MATLAB. Why does this code create 2-dimensional arrays? I tried it on a Coursera course and it somehow works but I'm a little confused on how line 1 and 2 create a matrix. Thanks!
function [a,b,c,d]=corners(x)
[y,z]=size(x);
a=x(1,1); %top left
b=x(1,end); %top right
c=x(end,1); %bottom left
d=x(end,end); %bottom right
end
0 件のコメント
採用された回答
David Fletcher
2021 年 4 月 25 日
The code doesn't create a 2 dimensional array - it is supplied with a 2 dimensional array (argument x) and the function returns the values that are at the corners of that array
function [a,b,c,d]=corners(x)
[y,z]=size(x); %Gets the size of x - values not used in the function so largely serves no purpose
a=x(1,1); %top left value returned
b=x(1,end); %top right value returned
c=x(end,1); %bottom left value returned
d=x(end,end); %bottom right value returned
end
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Shifting and Sorting Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!