Hello

I have a quick question.

I need to compute matrix in R, like A <- t(X) %*% solve(V) %*% X, where X is
a vector and V is a matrix

This code works, but now i want to optimize it. I have try:

A <- crossprod(X, solve(V)) %*% X

Is there another, better way?

WBR
Dima

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to