Concatenating N vectors

How come that dims(.) yields an array of length 3, and why does my code even compile? Isn’t this a bug?

I believe dims is treating the vector input like a matrix, so the returned dims array represents:

  1. Array length
  2. Number of rows
  3. Number of cols

The lack of compiler error is a longstanding issue where the compiler allows assigning vectors of different lengths: Assignment to vector of different size currently allowed · Issue #523 · stan-dev/stanc3 · GitHub

2 Likes