> >>>>> Eric Berger on Wed, 8 Aug 2018 12:53:32 +0300 writes:
>
> > You only need one "for loop"
> > for(i in 2:nrow(myMatrix)) {
> > myMatrix[i-1,i-1] = -1
> > myMatrix[i-1,i] = 1
> > }
Or none, with matrix-based array indexing and explicit control of the indices
to prevent overrun in :
mkMat <- function(n=5, m=7) {
M <- matrix(0, n,m)
i <- 1:min(n,m)
j <- i[i<m]
M[ cbind(i,i) ] <- -1
M[ cbind(j, j+1) ] <- 1
M
}
*******************************************************************
This email and any attachments are confidential. Any use...{{dropped:8}}
______________________________________________
[email protected] mailing list -- To UNSUBSCRIBE and more, see
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.