Displaying 1 result from an estimated 1 matches for "normr".
Did you mean:
  norm
  
2012 Feb 27
0
Conflict from saved implicit generics in methods package for rcond, norm, backsolve
...t;)
Creating a generic function for 'rcond' from 'base' in the global 
environment
     (from the saved implicit definition)
[1] "rcond"
R> rcond(x1)
Error in match.arg(norm) : argument "norm" is missing, with no default
R>
R> # norm
R> example(norm)
normR> (x1 <- cbind(1,1:10))
       [,1] [,2]
  [1,]    1    1
  [2,]    1    2
  [3,]    1    3
  [4,]    1    4
  [5,]    1    5
  [6,]    1    6
  [7,]    1    7
  [8,]    1    8
  [9,]    1    9
[10,]    1   10
normR> norm(x1)
[1] 55
normR> norm(x1, "I")
[1] 11
normR> norm...