Commit 71fa20f9 authored by 袁通's avatar 袁通
Browse files

update LAB 2

parent 2240a0c5
Loading
Loading
Loading
Loading

LAB2/P2_5_a_1.m

0 → 100644
+18 −0
Original line number Diff line number Diff line
% Problem 2.5(a) - 1

x1 = [1 0 0 0 0 0];
x2 = [0 1 0 0 0 0];
x3 = [1 2 0 0 0 0];

function output = myFun(input)
%myFun - Description
%
% Syntax: output = myFun(input)
%
% Long description
    output = [0 0 0 0 0 0]
    for i in input
        if i = 1
    
end

LAB2/P2_5_b.m

0 → 100644
+0 −0

Empty file added.

LAB2/P2_5_c.m

0 → 100644
+0 −0

Empty file added.

LAB2/P2_5_d.m

0 → 100644
+0 −0

Empty file added.

LAB2/P2_5_e.m

0 → 100644
+0 −0

Empty file added.

Loading