mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 16:43:12 +02:00
7 lines
147 B
Matlab
7 lines
147 B
Matlab
function A = matrix4()
|
|
A = [1, 1, 7, 5, 2;
|
|
1, 8, 5, 4, 4;
|
|
7, 5, 0, 8, 8;
|
|
5, 4, 8, 0, 8;
|
|
2, 4, 8, 8, 1];
|
|
end |