📄 vecmax.cc
字号:
/* * $Id: vecmax.cc,v 1.4 2005/06/02 18:56:52 julianc Exp $ * * Copyright (C) 1997 Todd Veldhuizen <tveldhui@oonumerics.org> * All rights reserved. Please see <blitz/blitz.h> for terms and * conditions of use. * */#ifndef BZ_VECMAX_CC#define BZ_VECMAX_CC#ifndef BZ_VECGLOBS_H #error <blitz/vecmax.cc> must be included via <blitz/vecglobs.h>#endifBZ_NAMESPACE(blitz)template<typename P_expr>inlineExtremum<_bz_typename P_expr::T_numtype, int> _bz_vec_max(P_expr vector){ typedef _bz_typename P_expr::T_numtype T_numtype; T_numtype maxValue = vector(0); int maxIndex = 0; int length = vector._bz_suggestLength(); if (vector._bz_hasFastAccess()) { for (int i=1; i < length; ++i) { T_numtype value = vector._bz_fastAccess(i); if (value > maxValue) { maxValue = value; maxIndex = i; } } } else { for (int i=1; i < length; ++i) { T_numtype value = vector(i); if (value > maxValue) { maxValue = value; maxIndex = i; } } } return Extremum<T_numtype, int>(maxValue, maxIndex);}// max(vector)template<typename P_numtype>inlineExtremum<P_numtype, int> (max)(const Vector<P_numtype>& x){ return _bz_vec_max(x._bz_asVecExpr());}// max(expr)template<typename P_expr>inlineExtremum<_bz_typename P_expr::T_numtype,int> (max)(_bz_VecExpr<P_expr> x){ return _bz_vec_max(x);}// max(vecpick)template<typename P_numtype>inlineExtremum<P_numtype, int> (max)(const VectorPick<P_numtype>& x){ return _bz_vec_max(x._bz_asVecExpr());}// max(TinyVector)template<typename P_numtype, int N_length>inlineExtremum<P_numtype, int> (max)(const TinyVector<P_numtype, N_length>& x){ return _bz_vec_max(x._bz_asVecExpr());}// maxIndex(vector)template<typename P_numtype>inlineint maxIndex(const Vector<P_numtype>& x){ return _bz_vec_max(x).index();}// maxIndex(expr)template<typename P_expr>inlineint maxIndex(_bz_VecExpr<P_expr> x){ return _bz_vec_max(x._bz_asVecExpr()).index();}// maxIndex(vecpick)template<typename P_numtype>int maxIndex(const VectorPick<P_numtype>& x){ return _bz_vec_max(x._bz_asVecExpr()).index();}// maxIndex(TinyVector)template<typename P_numtype, int N_length>int maxIndex(const TinyVector<P_numtype, N_length>& x){ return _bz_vec_max(x._bz_asVecExpr()).index();}// maxValue(vector)template<typename P_numtype>inlineint maxValue(const Vector<P_numtype>& x){ return _bz_vec_max(x._bz_asVecExpr()).value();}// maxValue(expr)template<typename P_expr>inlineint maxValue(_bz_VecExpr<P_expr> x){ return _bz_vec_max(x).value();}// maxValue(vecpick)template<typename P_numtype>int maxValue(const VectorPick<P_numtype>& x){ return _bz_vec_max(x._bz_asVecExpr()).value();}// maxValue(TinyVector)template<typename P_numtype, int N_length>int maxValue(const TinyVector<P_numtype, N_length>& x){ return _bz_vec_max(x._bz_asVecExpr()).value();}BZ_NAMESPACE_END#endif // BZ_VECMAX_CC
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -