[Distr-commits] r107 - in pkg/distrMod: . R chm man
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Thu Mar 27 15:28:41 CET 2008
Author: ruckdeschel
Date: 2008-03-27 15:28:41 +0100 (Thu, 27 Mar 2008)
New Revision: 107
Modified:
pkg/distrMod/NAMESPACE
pkg/distrMod/R/AllGeneric.R
pkg/distrMod/R/norms.R
pkg/distrMod/chm/00Index.html
pkg/distrMod/chm/NormType-class.html
pkg/distrMod/chm/QFnorm-class.html
pkg/distrMod/chm/distrMod.chm
pkg/distrMod/chm/distrMod.toc
pkg/distrMod/man/NormType-class.Rd
pkg/distrMod/man/QFnorm-class.Rd
pkg/distrMod/man/solve-methods.Rd
Log:
UpdateNorm moved to ROptEst
Modified: pkg/distrMod/NAMESPACE
===================================================================
--- pkg/distrMod/NAMESPACE 2008-03-26 08:43:52 UTC (rev 106)
+++ pkg/distrMod/NAMESPACE 2008-03-27 14:28:41 UTC (rev 107)
@@ -35,7 +35,7 @@
exportMethods("existsPIC")
exportMethods("modifyModel")
exportMethods("norm", "QuadForm<-", "QuadForm", "fct",
- "fct<-", "normtype", "normtype<-", "updateNorm")
+ "fct<-", "normtype", "normtype<-")
S3method(print, Estimate)
export("PosDefSymmMatrix","PosSemDefSymmMatrix")
export("distrModOptions", "getdistrModOption",
Modified: pkg/distrMod/R/AllGeneric.R
===================================================================
--- pkg/distrMod/R/AllGeneric.R 2008-03-26 08:43:52 UTC (rev 106)
+++ pkg/distrMod/R/AllGeneric.R 2008-03-27 14:28:41 UTC (rev 107)
@@ -138,6 +138,3 @@
if(!isGeneric("fct")){
setGeneric("fct", function(object) standardGeneric("fct"))
}
-if(!isGeneric("updateNorm")){
- setGeneric("updateNorm", function(normtype, ...) standardGeneric("updateNorm"))
-}
Modified: pkg/distrMod/R/norms.R
===================================================================
--- pkg/distrMod/R/norms.R 2008-03-26 08:43:52 UTC (rev 106)
+++ pkg/distrMod/R/norms.R 2008-03-27 14:28:41 UTC (rev 107)
@@ -1,4 +1,3 @@
-
setMethod("name", signature = "NormType", function(object) object at name)
setReplaceMethod("name", signature = "NormType", function(object,value)
{object at name <- value; object})
@@ -28,11 +27,4 @@
new("SelfNorm", name = "Information matrix Norm",
fct = function(x) QuadFormNorm(x, A = A),
QuadForm = A)}
-
-setMethod("updateNorm", "NormType", function(normtype, ...) normtype)
-setMethod("updateNorm", "InfoNorm", function(normtype, FI, ...)
- {QuadForm(normtype) <- FI; normtype})
-setMethod("updateNorm", "SelfNorm", function(normtype, L2, stand,
- cent, clip, Distr, norm, ...)
- {Cv <- .asCovMB(L2, stand, cent, clip, Distr, norm)
- QuadForm(normtype) <- Cv; normtype})
\ No newline at end of file
+
\ No newline at end of file
Modified: pkg/distrMod/chm/00Index.html
===================================================================
--- pkg/distrMod/chm/00Index.html 2008-03-26 08:43:52 UTC (rev 106)
+++ pkg/distrMod/chm/00Index.html 2008-03-27 14:28:41 UTC (rev 107)
@@ -31,7 +31,6 @@
<a href="#R">R</a>
<a href="#S">S</a>
<a href="#T">T</a>
-<a href="#U">U</a>
<a href="#W">W</a>
</p>
<table width="100%">
@@ -539,19 +538,6 @@
<td>Class of Symmetries</td></tr>
</table>
-<h2><a name="U">-- U --</a></h2>
-
-<table width="100%">
-<tr><td width="25%"><a href="NormType-class.html">updateNorm</a></td>
-<td>Norm Type</td></tr>
-<tr><td width="25%"><a href="QFnorm-class.html">updateNorm,InfoNorm-method</a></td>
-<td>Norm classes for norms based on quadratic forms</td></tr>
-<tr><td width="25%"><a href="NormType-class.html">updateNorm,NormType-method</a></td>
-<td>Norm Type</td></tr>
-<tr><td width="25%"><a href="QFnorm-class.html">updateNorm,SelfNorm-method</a></td>
-<td>Norm classes for norms based on quadratic forms</td></tr>
-</table>
-
<h2><a name="W">-- W --</a></h2>
<table width="100%">
Modified: pkg/distrMod/chm/NormType-class.html
===================================================================
--- pkg/distrMod/chm/NormType-class.html 2008-03-26 08:43:52 UTC (rev 106)
+++ pkg/distrMod/chm/NormType-class.html 2008-03-27 14:28:41 UTC (rev 107)
@@ -12,8 +12,6 @@
<param name="keyword" value="R: fct<-">
<param name="keyword" value="R: fct,NormType-method">
<param name="keyword" value="R: fct<-,NormType-method">
-<param name="keyword" value="R: updateNorm,NormType-method">
-<param name="keyword" value="R: updateNorm">
<param name="keyword" value=" Norm Type">
</object>
@@ -54,10 +52,6 @@
accessor function for slot <code>fct</code>. </dd>
<dt>fct<-</dt><dd><code>signature(object = "NormType", value = "function")</code>:
replacement function for slot <code>fct</code>. </dd>
-<dt>updateNorm</dt><dd><code>signature(object = "NormType")</code>:
-udates the norm in the self/information-standardized case; just used
-internally in the opt-IC-Algorithm; in case of a "default" - "NormType" argument
-the object is returned unchanged. </dd>
</dl>
<h3>Author(s)</h3>
Modified: pkg/distrMod/chm/QFnorm-class.html
===================================================================
--- pkg/distrMod/chm/QFnorm-class.html 2008-03-26 08:43:52 UTC (rev 106)
+++ pkg/distrMod/chm/QFnorm-class.html 2008-03-27 14:28:41 UTC (rev 107)
@@ -10,8 +10,6 @@
<param name="keyword" value="R: SelfNorm-class">
<param name="keyword" value="R: QuadForm,QFNorm-method">
<param name="keyword" value="R: QuadForm<-,QFNorm-method">
-<param name="keyword" value="R: updateNorm,InfoNorm-method">
-<param name="keyword" value="R: updateNorm,SelfNorm-method">
<param name="keyword" value="R: QuadForm">
<param name="keyword" value="R: QuadForm<-">
<param name="keyword" value=" Norm classes for norms based on quadratic forms">
@@ -61,12 +59,6 @@
accessor function for slot <code>QuadForm</code>. </dd>
<dt>QuadForm<-</dt><dd><code>signature(object = "QFNorm")</code>:
replacement function for slot <code>QuadForm</code>. </dd>
-<dt>updateNorm</dt><dd><code>signature(object = "InfoNorm")</code>:
-udates the norm in the information-standardized case; just used
-internally in the opt-IC-Algorithm. </dd>
-<dt>updateNorm</dt><dd><code>signature(object = "SelfNorm")</code>:
-udates the norm in the self-standardized case; just used
-internally in the opt-IC-Algorithm. </dd>
</dl>
<h3>Author(s)</h3>
Modified: pkg/distrMod/chm/distrMod.chm
===================================================================
(Binary files differ)
Modified: pkg/distrMod/chm/distrMod.toc
===================================================================
--- pkg/distrMod/chm/distrMod.toc 2008-03-26 08:43:52 UTC (rev 106)
+++ pkg/distrMod/chm/distrMod.toc 2008-03-27 14:28:41 UTC (rev 107)
@@ -878,22 +878,6 @@
<param name="Local" value="Symmetry-class.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
-<param name="Name" value="updateNorm">
-<param name="Local" value="NormType-class.html">
-</OBJECT>
-<LI> <OBJECT type="text/sitemap">
-<param name="Name" value="updateNorm,InfoNorm-method">
-<param name="Local" value="QFnorm-class.html">
-</OBJECT>
-<LI> <OBJECT type="text/sitemap">
-<param name="Name" value="updateNorm,NormType-method">
-<param name="Local" value="NormType-class.html">
-</OBJECT>
-<LI> <OBJECT type="text/sitemap">
-<param name="Name" value="updateNorm,SelfNorm-method">
-<param name="Local" value="QFnorm-class.html">
-</OBJECT>
-<LI> <OBJECT type="text/sitemap">
<param name="Name" value="width">
<param name="Local" value="asUnOvShoot-class.html">
</OBJECT>
Modified: pkg/distrMod/man/NormType-class.Rd
===================================================================
--- pkg/distrMod/man/NormType-class.Rd 2008-03-26 08:43:52 UTC (rev 106)
+++ pkg/distrMod/man/NormType-class.Rd 2008-03-27 14:28:41 UTC (rev 107)
@@ -7,8 +7,6 @@
\alias{fct<-}
\alias{fct,NormType-method}
\alias{fct<-,NormType-method}
-\alias{updateNorm,NormType-method}
-\alias{updateNorm}
\title{Norm Type}
\description{Class of norm types.}
@@ -30,10 +28,6 @@
accessor function for slot \code{fct}. }
\item{fct<-}{\code{signature(object = "NormType", value = "function")}:
replacement function for slot \code{fct}. }
- \item{updateNorm}{\code{signature(object = "NormType")}:
- udates the norm in the self/information-standardized case; just used
- internally in the opt-IC-Algorithm; in case of a "default" - "NormType" argument
- the object is returned unchanged. }
}
}
\references{
Modified: pkg/distrMod/man/QFnorm-class.Rd
===================================================================
--- pkg/distrMod/man/QFnorm-class.Rd 2008-03-26 08:43:52 UTC (rev 106)
+++ pkg/distrMod/man/QFnorm-class.Rd 2008-03-27 14:28:41 UTC (rev 107)
@@ -5,8 +5,6 @@
\alias{SelfNorm-class}
\alias{QuadForm,QFNorm-method}
\alias{QuadForm<-,QFNorm-method}
-\alias{updateNorm,InfoNorm-method}
-\alias{updateNorm,SelfNorm-method}
\alias{QuadForm}
\alias{QuadForm<-}
@@ -34,12 +32,6 @@
accessor function for slot \code{QuadForm}. }
\item{QuadForm<-}{\code{signature(object = "QFNorm")}:
replacement function for slot \code{QuadForm}. }
- \item{updateNorm}{\code{signature(object = "InfoNorm")}:
- udates the norm in the information-standardized case; just used
- internally in the opt-IC-Algorithm. }
- \item{updateNorm}{\code{signature(object = "SelfNorm")}:
- udates the norm in the self-standardized case; just used
- internally in the opt-IC-Algorithm. }
}
}
\references{
Modified: pkg/distrMod/man/solve-methods.Rd
===================================================================
--- pkg/distrMod/man/solve-methods.Rd 2008-03-26 08:43:52 UTC (rev 106)
+++ pkg/distrMod/man/solve-methods.Rd 2008-03-27 14:28:41 UTC (rev 107)
@@ -22,7 +22,7 @@
side(s) of the linear system. If missing, \code{b} is taken to be
an identity matrix and \code{solve} will return the inverse of
\code{a}.}
- \item{...}{ further arguments to be passed to specific methods (see \code{\link[base]{solve}}).}
+ \item{\dots}{ further arguments to be passed to specific methods (see \code{\link[base]{solve}}).}
\item{generalized}{ logical: should generalized / Moore-Penrose inverses be used? }
\item{tol}{ the tolerance for detecting linear dependencies in the
columns of \code{a}. Default is \code{.Machine$double.eps}.}
More information about the Distr-commits
mailing list