mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 17:43:12 +02:00
6 lines
146 B
Matlab
6 lines
146 B
Matlab
function Vector = task2Vector
|
|
Vector = zeros(4, 1);
|
|
Vector(1, 1) = -8;
|
|
Vector(2, 1) = -12;
|
|
Vector(3, 1) = 4;
|
|
Vector(4, 1) = 1; |