We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
block_bandsolve(mat, vect, FALSE, lim) does not work when D[-(1:lim), -(1:lim)] has a column of zeros.
block_bandsolve(mat, vect, FALSE, lim)
D[-(1:lim), -(1:lim)]
The text was updated successfully, but these errors were encountered:
Minimal working example:
library(hazreg) library(limSolve) library(tidyverse) set.seed(0) A <- matrix(rnorm(36), 6, 6) B <- matrix(rnorm(24), 6, 4) D <- diag(rnorm(4)) + rbind(cbind(0, diag(rnorm(3))), 0) D[4, ] <- 0 D[, 4] <- 0 mat <- rbind(cbind(A + t(A), B), cbind(t(B), D + t(D))) vect <- rnorm(10) vect[10] <- 0 lim <- 6 block_bandsolve(mat, vect, FALSE, lim)
library(hazreg)
library(limSolve)
library(tidyverse)
set.seed(0)
A <- matrix(rnorm(36), 6, 6)
B <- matrix(rnorm(24), 6, 4)
D <- diag(rnorm(4)) + rbind(cbind(0, diag(rnorm(3))), 0)
D[4, ] <- 0
D[, 4] <- 0
mat <- rbind(cbind(A + t(A), B), cbind(t(B), D + t(D)))
vect <- rnorm(10)
vect[10] <- 0
lim <- 6
Sorry, something went wrong.
goepp
No branches or pull requests
block_bandsolve(mat, vect, FALSE, lim)
does not work whenD[-(1:lim), -(1:lim)]
has a column of zeros.The text was updated successfully, but these errors were encountered: