Advertisement
Lauda

Norme

Nov 12th, 2013
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.40 KB | None | 0 0
  1. % Norme:
  2. function x = norme(A, inp)
  3. [n, m] = size(A);
  4. x = 0;
  5. switch inp
  6.     case 1
  7.         for i=1:n
  8.             x = x+abs((A(i)));
  9.         end
  10.     case 2
  11.         for i=1:n
  12.             x = x+(A(i)^2);
  13.         end
  14.         x = sqrt(x);
  15.     case 3
  16.         x = max(abs(A));
  17.     otherwise
  18.         x = 0;
  19. end
  20.  
  21. % Poziv:
  22. % A = [4 1 3; 2 5 6; 9 2 1];
  23. % inp = 1..3;
  24. % x = norme(A, 1..3);
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement