Page 1 of 1

transpose row vector

Posted: Tue Apr 25, 2023 5:41 am
by ErikG
Hi, @transpose() generates an error when the argument is a row vector.

Code: Select all

WfCreate C:\temp\temp.wf1 u 1 Rowvector(3) rvX = 1 Vector vX = @Transpose(rvX)
Eviews 13 Enterprise edition 2023 April 11 build.

Re: transpose row vector

Posted: Tue Apr 25, 2023 9:43 am
by EViews Glenn
Apologies. We were cleaning up inconsistent behavior of rowvectors and inadvertently created some issues with some of the older functions. I'll get it fixed.

For now, you can use the newer "@t" data member of the rowvector to obtain the transpose, as in

Code: Select all

vector cvec = rvec.@t
This is my preferred way of working.

Sorry for the inconvenience.

Re: transpose row vector

Posted: Fri Apr 28, 2023 8:38 am
by EViews Glenn
A fix will be in the next update.