FIR2LIFT is a program to factor a wavelet FIR filter pair into lifting steps.

源代码在线查看: redir.h

软件大小: 24 K
上传用户: god_dog
关键词: FIR2LIFT program lifting wavelet
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*
				FILE : REDIR.H
				
				Implementation of a printf redirector.
				
				(C) C. Valens
				
				Created     : 21/09/1999
				Last update : 24/09/1999
				
				*/
				
				
				#ifndef __REDIR_H__
				#define __REDIR_H__
				
				/*
				 * Open the output stream. If what and how are NULL, output will be send
				 * to CON in default mode.
				 * Returns -1 in case of error, 0 otherwise.
				 */
				int redir_open(const char *what, const char *how);
				
				/*
				 * Close the output stream.
				 * Always returns 0.
				 */
				int redir_close(void);
				
				/*
				 * Identical to printf, but redirected to the output stream.
				 * Returns the number of characters written.
				 */
				int redir_printf(const char *format, ...);
				
				
				#endif /* __REDIR_H__ */
							

相关资源