Author: Zhu Jincan
Source: http://www.cnblogs.com/clever101
I want to write a recently intensive matrix operationProgramAnd thought of using the MTL library. But go to the official website of the MTL Library (Http://osl.iu.edu/research/mtl/download.php3)The downloaded files cannot be used in VS 2005. So I downloaded one from the Internet. The downloaded one is in conflict with the Max and Min macros of the C standard library (macro definition). To solve this conflict, we need to add the followingCode(When UsingUtils. hFunctions in the fileConflict will occur)
Namespace MTL
{
# Ifdef Max
# UNDEF Max
# Endif
# Ifdef min
# UNDEF Min
# Endif
}< P>
# include " MTL/MTL. h "
# include " MTL/Lu. h "
# include " MTL/utils. h "
In addition, I have uploaded the available versions to the csdn download channel. The address is: Download The MTL library.