Nothing
#[export]
Diag.fill <- function(x,v=0) {
if(length(v)>1){
.Call(Rfast_diag_fill_vec,x,v)
}else{
.Call(Rfast_diag_fill_scalar,x,v)
}
}
#[export]
Diag.matrix <- function(len,v=0) {
if(length(v)>1){
.Call(Rfast_diag_matrix_fill_vec,len,v)
}else{
.Call(Rfast_diag_matrix_fill_scalar,len,v)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.