From: Daniel on
I would like to use a library that would allow me to create the equivalent
of a two-dimensional array the same way that I am able to use the vector as
a one dimensional array. Is that possible with the vector library or is
there another?

Daniel


From: Giovanni Dicanio on

"Daniel" <Mahonri(a)cableone.net> ha scritto nel messaggio
news:e7iro7TsIHA.5096(a)TK2MSFTNGP02.phx.gbl...
>I would like to use a library that would allow me to create the equivalent
>of a two-dimensional array the same way that I am able to use the vector as
>a one dimensional array. Is that possible with the vector library or is
>there another?


I posted some C++ code for 2D array in this MSDN forum:
Visual C++ -> Visual C++ Language -> Define a 2D array and pass it in a
function

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2933117&SiteID=1

There is also a very good library for array, matrixes, etc. called Boost:

http://www.oonumerics.org/blitz/

HTH,
Giovanni


From: Alex Blekhman on
"Giovanni Dicanio" wrote:
> There is also a very good library for array, matrixes, etc.
> called Boost:
>
> http://www.oonumerics.org/blitz/

Freudian slip? :)


From: Giovanni Dicanio on

"Alex Blekhman" <tkfx.REMOVE(a)yahoo.com> ha scritto nel messaggio
news:uTK9cmasIHA.4476(a)TK2MSFTNGP06.phx.gbl...
> "Giovanni Dicanio" wrote:
>> There is also a very good library for array, matrixes, etc. called Boost:
>>
>> http://www.oonumerics.org/blitz/
>
> Freudian slip? :)

....Sorry :)

It was late when I sent the post, yes the library is Blitz++ :)

Giovanni