SyntaxFix
Write A Post
Hire A Developer
Questions
If you don't know the number of columns ahead of time, add each column to a list and cbind at the end.
cbind
List <- list() for(i in 1:n) { normF <- #something List[[i]] <- normF } Matrix = do.call(cbind, List)