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