phytium-vsipl/include/tool.h

23 lines
491 B
C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef RADAR_UTILS_H_
#define RADAR_UTILS_H_
#include "vsip.h"
/*
* 输出实向量
* 参数p_vector -- 输入向量
* p_file -- 输出文件
* 功能:将实向量的数据输出到文件
*/
void outputRealVector(vsip_vview_f *p_vector, char *p_name);
/*
* 输出复向量
* 参数p_vector -- 输入向量
* p_file -- 输出文件
* 功能:将复向量的数据输出到文件
*/
void outputComplexVector(vsip_cvview_f *p_vector,char *p_name);
#endif