登录
首页 » c » Matlab filtfilt函数 C代码改写

Matlab filtfilt函数 C代码改写

于 2022-02-01 发布 文件大小:1.31 kB
0 66
下载积分: 2 下载次数: 1

代码说明:

Matlab,filtfilt(零相位滤波函数),C语言改写,子文件包括filter差分方程计算,inverse信号反转,参数计算等函数,亲测可用,与Matlab最终计算结果一致。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • abc
    简单易行,很好玩很简单那,我都没费什么功夫(Simple and fun it is very simple)
    2010-11-24 16:04:20下载
    积分:1
  • exercises-code
    《Visual C++ 面向对象与可视化程序设计》课后习题代码。(《Visual C++ and visualization of object-oriented programming》after-school exercise code.)
    2013-11-28 10:34:35下载
    积分:1
  • 隧道水量计算器x
    基于生态平衡的原理,计算隧道的平衡涌水量(Calculate the equilibrium water inflow of the tunnel)
    2020-06-20 04:00:02下载
    积分:1
  • sMACD
    自定义MACD指标,应用于外汇市场或者股票证券期货的技术指标。(The custom MACD index is applied to the technical indicators of the foreign exchange market or stock securities futures.)
    2018-03-19 15:48:18下载
    积分:1
  • fineline_code
    说明:  里面含有直流电机的PWM波的驱动程序,更有做自动寻线小车程序,可以判断是否要拐弯(Which contains a DC motor PWM wave driver, car and more to do automatic line-tracking program, can determine whether or not to turn a corner)
    2009-08-25 19:53:38下载
    积分:1
  • YUV_DCT
    YUV Quantization using VS2010
    2013-07-14 19:12:13下载
    积分:1
  • lvboqi
    利用matlab设计高通、低通、带通和带阻滤波器,生成效果图(High-pass, low-pass, band-pass and band-stop filter using matlab design generated effect diagram)
    2013-03-18 21:56:54下载
    积分:1
  • 仿造酷狗音乐最新版代码(含各种用户控件源码)
     11111111111111111111111 核心代码:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Runtime.InteropServices;using System.IO;using MediaControlLibrary;namespace MusicPlayer{ public partial class MainForm : Form { //public const Int32 AW_HOR_POSITIVE = 0x00000001; //public const Int32 AW_HOR_NEGATIVE = 0x00000002; //public const Int32 AW_VER_POSITIVE = 0x00000004; //public const Int32 AW_VER_NEGATIVE = 0x00000008; public const Int32 AW_CENTER = 0x00000010; //public const Int32 AW_HIDE = 0x00010000; //public const Int32 AW_ACTIVATE = 0x00020000; //public const Int32 AW_SLIDE = 0x00040000; //public const Int32 AW_BLEND = 0x00080000; public MainForm() { InitializeComponent(); //设置最大尺寸,防止全屏时遮挡任务栏 this.MaximumSize = Screen.PrimaryScreen.WorkingArea.Size; //启动动画 AnimateWindow(this.Handle, 100, 0x00000010);//开始窗体动画,中心展开 //歌词窗口 //lyricShow1.InitAndShowDesktopLyric(); for (int i = 0; i < 1; i ) { MediaList list = new MediaList("默认列表"); for (int j = 0; j < 10; j ) { MediaItem item = new MediaItem("歌曲" j, "00:00"); item.SecondContent = "111223"; list.SubItems.Add(item); } mediaContainer1.Lists.Add(list); MediaList list1 = new MediaList("新建列表"); mediaContainer1.Lists.Add(list1); } } /// /// 退出时动画效果 /// /// /// private void MainForm_FormClosed(object sender, FormClosedEventArgs e) { if (this.WindowState != FormWindowState.Minimized) { while (this.Height > 10) { this.Location = new Point(this.Location.X, this.Location.Y 15); this.Height -= 30; this.Opacity -= 0.01; } } Application.Exit(); } #region 播放控制与信息显示相关变量 MyMedia mySong = new MyMedia(); bool IsMute = false; bool IsStop = false; #endregion #region API和常量 [DllImport("user32.dll")] private static extern bool AnimateWindow(IntPtr hwnd, int dwTime, int dwFlags); [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] private static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam); private const int WM_SYSCOMMAND = 0x0112; private const int SC_MOVE = 0xF010; private const int HTCAPTION = 0x0002; private const int WM_NCHITTEST = 0x84; private const int HTCLIENT = 0x1; private const int WM_NCLBUTTONDBLCLK = 0xA3;//鼠标双击标题栏消息 //改变窗体大小 public const int WMSZ_LEFT = 0xF001; public const int WMSZ_RIGHT = 0xF002; public const int WMSZ_TOP = 0xF003; public const int WMSZ_TOPLEFT = 0xF004; public const int WMSZ_TOPRIGHT = 0xF005; public const int WMSZ_BOTTOM = 0xF006; public const int WMSZ_BOTTOMLEFT = 0xF007; public const int WMSZ_BOTTOMRIGHT = 0xF008; #endregion #region 无边框窗口拖动及大小状态切换 protected override CreateParams CreateParams { get { const int WS_MINIMIZEBOX = 0x00020000; // Winuser.h中定义 CreateParams cp = base.CreateParams; cp.Style = cp.Style | WS_MINIMIZEBOX; // 允许最小化操作 return cp; } } private void tpnlMain_MouseDown(object sender, MouseEventArgs e) { //如果是顶部或底部的空栏 if ((e.Y > 0 && e.Y < 30) || (e.Y > this.Height - 40 && e.Y < this.Height)) { //按下的是鼠标左键,则拖动窗口 if (e.Button == MouseButtons.Left) { ReleaseCapture(); SendMessage(this.Handle, WM_SYSCOMMAND, SC_MOVE HTCAPTION, 0);//*********************调用移动无窗体控件函数 } //双击顶部标题栏切换窗口状态 if ((e.Y > 0 && e.Y < 30) && e.Button == MouseButtons.Left && e.Clicks == 2) { if (this.WindowState == FormWindowState.Normal) { SendMessage(this.Handle, 274, 61488, 0); return; } if (this.WindowState == FormWindowState.Maximized) { SendMessage(this.Handle, 274, 61728, 0); return; } } } //拉伸改变大小 if (e.Y>0&&e.Y
    2014-06-07下载
    积分:1
  • QN8027 调频发射机 h 和 c 文件
    QN8027 调频发射机驱动程序。其书面为它包含所有必需的例程的 QN8027 芯片控制。 ST stm32f10x 扩展。简单易用。文件是 QN8027 c 和 QN8027 头文件。工作实验板很容易从中国 ebay 上找到。所有廉价调频发射机使用此芯片组 QN8027
    2023-05-18 23:05:04下载
    积分:1
  • RMS供应室追溯系统
    供应室追溯信息系统是指针通过全面建设采用“移动计算技术”“扫描技术”和“条码识别技术”开发的医院供应室追溯信息系统,系统利用当今先进移动信息技术,规范中心供应室的流程,减少医院感染事件的发生,为医院及病人提供快捷、安全、高效的医疗救治环境,控制医院的成本,同时大力提升医院管理水平。     系统可以将回收、清点、开始清洗、结束清洗、打包、开始灭菌、结束灭菌、发放、使用的九大环节运用计算机技术实现医院消毒中心供应室的信息化管理。
    2023-05-09 15:40:03下载
    积分:1
  • 696518资源总数
  • 104224会员总数
  • 54今日下载