The R Project SVN R-packages

Rev

Rev 5003 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5003 Rev 5028
Line 317... Line 317...
317
setMethod("t", signature(x = "Matrix"),
317
setMethod("t", signature(x = "Matrix"),
318
	  function(x) .bail.out.1(.Generic, class(x)))
318
	  function(x) .bail.out.1(.Generic, class(x)))
319
 
319
 
320
setMethod("norm", signature(x = "Matrix", type = "character"),
320
setMethod("norm", signature(x = "Matrix", type = "character"),
321
	  function(x, type, ...) .bail.out.1(.Generic, class(x)))
321
	  function(x, type, ...) .bail.out.1(.Generic, class(x)))
322
setMethod("rcond", signature(x = "Matrix", type = "character"),
322
setMethod("rcond", signature(x = "Matrix", norm = "character"),
323
	  function(x, type, ...) .bail.out.1(.Generic, class(x)))
323
	  function(x, norm, ...) .bail.out.1(.Generic, class(x)))
324
 
324
 
325
 
325
 
326
## for all :
326
## for all :
327
setMethod("norm", signature(x = "ANY", type = "missing"),
327
setMethod("norm", signature(x = "ANY", type = "missing"),
328
	  function(x, type, ...) norm(x, type = "O", ...))
328
	  function(x, type, ...) norm(x, type = "O", ...))
329
setMethod("rcond", signature(x = "ANY", type = "missing"),
329
setMethod("rcond", signature(x = "ANY", norm = "missing"),
330
	  function(x, type, ...) rcond(x, type = "O", ...))
330
	  function(x, norm, ...) rcond(x, norm = "O", ...))
331
 
331
 
332
 
332
 
333
 
333
 
334
 
334
 
335
 
335