Changeset 861


Ignore:
Timestamp:
03/01/06 14:00:32 (18 years ago)
Author:
mar637
Message:

added documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/MathUtils.h

    r829 r861  
    4242// Hanning smoothing
    4343template <class T>
     44/**
     45 * Hanning smooth a masked vector
     46 * @param out the smoothed vector
     47 * @param outmask  the smoothed mask
     48 * @param in the input vector
     49 * @param mask the input mask
     50 * @param relaxed a weighting scheme
     51 * @param ignoreOther drop every second channel (NYI)
     52 */
    4453void hanning(casa::Vector<T>& out, casa::Vector<casa::Bool>& outmask,
    4554             const casa::Vector<T>& in, const casa::Vector<casa::Bool>& mask,
     
    5564                       const casa::Vector<casa::Bool>& mask);
    5665
     66/**
     67 * Convert a std::vector of std::string
     68 * to a casa::Vector casa::String
     69 * @param in
     70 * @return
     71 */
    5772std::vector<std::string> tovectorstring(const casa::Vector<casa::String>& in);
    5873
     74/**
     75 * Convert a casa::Vector of casa::String
     76 * to a stl std::vector of stl std::string
     77 * @param in
     78 * @return
     79 */
    5980casa::Vector<casa::String> toVectorString(const std::vector<std::string>& in);
    6081
Note: See TracChangeset for help on using the changeset viewer.