测试片段

2022-05-05

以下示例是关于C_Cpp中包含测试片段用法的示例代码,想了解测试片段的具体用法?测试片段怎么用?测试片段使用的例子?那么可以参考以下相关源代码片段来学习它的具体使用方法。

文件名:test cpp[英]:test snippet源码类型:C_Cpp
import std.core

template<typename T>
inline
bool
diskio::save_pgm_binary(const Mat< std::complex<T> >& x, const std::string& final_name)
  {
  arma_extra_debug_sigprint();
  
  const uchar_mat tmp = conv_to<uchar_mat>::from(x);
  
  return diskio::save_pgm_binary(tmp, final_name);
  }

本文地址:https://www.itbaoku.cn/snippets/785104.html