Hello,
I just noticed that I cant use an arbitrary positive scalar as the third argument in the seq function.
This does not work:
matrix sq = seq(0.1,40.2,0.1)
whereas this works:
matrix sq = seq(0.1,40.2,1)
sq
Is there a reason for this limitation? For instance, Gauss' seqa function accepts any positive scalar.