Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
ProcMod
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LECASofts
ProcMod
Commits
099d2940
Commit
099d2940
authored
May 17, 2018
by
Christelle Melodelima
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove dependancy to matlib
parent
a7d9dea9
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
6 deletions
+4
-6
.gitignore
.gitignore
+1
-0
DESCRIPTION
DESCRIPTION
+0
-1
NAMESPACE
NAMESPACE
+0
-1
Procuste.Rproj
Procuste.Rproj
+1
-0
mprocuste.R
R/mprocuste.R
+2
-4
No files found.
.gitignore
View file @
099d2940
...
...
@@ -3,3 +3,4 @@
.RData
.Ruserdata
inst/doc
.DS_Store
DESCRIPTION
View file @
099d2940
...
...
@@ -9,7 +9,6 @@ Description: More about what it does (maybe more than one line)
License: What license is it under?
Encoding: UTF-8
LazyData: true
Imports: matlib
RoxygenNote: 6.0.1
Suggests: knitr,
rmarkdown
...
...
NAMESPACE
View file @
099d2940
...
...
@@ -6,4 +6,3 @@ S3method(print,pm)
export(mcor)
export(mvar)
export(pm)
import(matlib)
Procuste.Rproj
View file @
099d2940
...
...
@@ -15,3 +15,4 @@ LaTeX: pdfLaTeX
BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
PackageRoxygenize: rd,collate,namespace,vignette
R/mprocuste.R
View file @
099d2940
#' @title ProcMod
#' @description blabla
#' @author Christelle Gonindard-Melodelima
#' @import matlib
#'
require
(
matlib
)
NULL
#' Compute the variance, covariance matrix of K coordinate matrices.
#'
...
...
@@ -132,7 +130,7 @@ pm = function (model,data) {
SIMPLIFY
=
FALSE
)
if
(
length
(
xx.cov
)
>
1
)
ixx.cov
=
inv
(
xx.cov
)
ixx.cov
=
solve
(
xx.cov
)
else
ixx.cov
=
1
/
xx.cov
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment