NumCpp  1.0
A C++ implementation of the Python Numpy library
transpose.hpp
Go to the documentation of this file.
1 #pragma once
30 
31 #include "NumCpp/NdArray.hpp"
32 
33 namespace nc
34 {
35  //============================================================================
36  // Method Description:
47  template<typename dtype>
49  {
50  return inArray.transpose();
51  }
52 }
nc::NdArray::transpose
NdArray< dtype > transpose() const
Definition: NdArrayCore.hpp:4591
nc::NdArray< dtype >
NdArray.hpp
nc
Definition: Coordinate.hpp:45
nc::transpose
NdArray< dtype > transpose(const NdArray< dtype > &inArray)
Definition: transpose.hpp:48