summaryrefslogtreecommitdiff
path: root/75/CH1/EX1.3/ex_3.sce
blob: 504a8cab38becc0256f8a9b4d0403350febfda13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
        //    PG (11)

A = [1 -1;3 2]
x = [1;2]
y = A*x
norm(A,'inf')
norm(x,'inf')
norm(y,'inf')

x = [1;1]
y = A*x
norm(y,'inf')
norm(A,'inf')*norm(x,'inf')

//    norm(y,'inf') = norm(A,'inf') * norm(x,'inf')