Page 1 of 1

Matrix functions in Eviews13

Posted: Mon Dec 12, 2022 8:50 am
by vytama
Hello,
Have the functions in matrix operations changed in Eviews 13? my code ran fine on Friday in Eviews 12, but now it gives me an error:
code:
vector {%market}_lead_cor_min=@transpose(@cmin( {%market}_lead_correl))

error:
A vector cannot be resized to have more than 1 column in
"VECTOR {%MARKET}_LEAD_COR_MIN=@TRANSPOSE(@CMIN(
(%market}_lead_correl)" on line 141.

Re: Matrix functions in Eviews13

Posted: Mon Dec 12, 2022 10:19 am
by EViews Gareth
There was a tidying up of the vector/rowvector objects. A vector is a nx1 sized object. A rowvector is a 1xn sized object.

Re: Matrix functions in Eviews13

Posted: Mon Dec 12, 2022 12:39 pm
by vytama
Thank you.