Skip to content

Commit cb1bb16

Browse files
committed
consistentification
1 parent f7e3678 commit cb1bb16

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

R/mult.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,12 +211,12 @@
211211
kform(spray(ind,coeffs,addrepeats=TRUE))
212212
}
213213

214-
`rformm` <- function(terms=30, k=7, n=20, ...){
215-
rform(terms=terms, k=k, n=n, ...)
214+
`rformm` <- function(terms=30, k=7, n=20, coeffs, ensure=TRUE){
215+
rform(terms=terms, k=k, n=n, coeffs=coeffs, ensure=ensure)
216216
}
217217

218-
`rformmm` <- function(terms=90, k=15, n=30, ...){
219-
rform(terms=terms, k=k, n=n, ...)
218+
`rformmm` <- function(terms=90, k=15, n=30, coeffs, ensure=TRUE){
219+
rform(terms=terms, k=k, n=n, coeffs=coeffs, ensure=ensure)
220220
}
221221

222222
`rtensor` <- function(terms=9, k=3, n=7, coeffs){

man/rform.Rd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
Random \eqn{k}-form objects and \eqn{k}-tensors,
1111
intended as quick \dQuote{get you going} examples}
1212
\usage{
13-
rform(terms=9,k=3,n=7,coeffs,ensure=TRUE)
14-
rformm(terms=30, k=7, n=20, coeffs, ensure)
15-
rformmm(terms=90, k=15, n=30, coeffs, ensure)
13+
rform(terms=9, k=3, n=7, coeffs, ensure=TRUE)
14+
rformm(terms=30, k=7, n=20, coeffs, ensure=TRUE)
15+
rformmm(terms=90, k=15, n=30, coeffs, ensure=TRUE)
1616
rtensor(terms=9,k=3,n=7,coeffs)
1717
}
1818
\arguments{
1919
\item{terms}{Number of distinct terms}
20-
\item{k,n}{A \eqn{k}-form maps \eqn{V^k} to
20+
\item{k, n}{A \eqn{k}-form maps \eqn{V^k} to
2121
\eqn{\mathbb{R}}{R}, where \eqn{V=\mathbb{R}^n}{V=R^n}}
2222
\item{coeffs}{The coefficients of the form; if missing use
2323
\code{seq_len(terms)}}

0 commit comments

Comments
 (0)