搜索资源列表
Convex
- 凸优化理论在信号处理中的应用,该理论很关键,希望大家多多学习!原版英文文档-Convex optimization theory in signal processing applications, the theory is critical, I hope to learn from you! Original English documentation
singal
- linux 下实现信号处理,管道设计通信-linux achieve signal processing, pipeline design communications
test
- /* 在这里我们连接 "destroy" 事件到一个信号处理函数。 * 对这个窗口调用 gtk_widget_destroy() 函数或在 "delete_event" 回调函数中返回 FALSE 值 * 都会触发这个事件。*/ g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy), NULL) /* 设置窗口边框的宽度。*/ gtk_container_se
Linuxprogram
- linux下c编程指南,包括创建进程,文件操作,时间概念,信号处理函数,进线程通信,以及linux下c编译器-c under linux Programming Guide, including the establishment of processes, file operations, the time the concept of signal processing functions, into the threads of communication, as well as linu
linuxC
- linux下的C语言编程入门 目录介绍 1)Linux程序设计入门--基础知识 2)Linux程序设计入门--进程介绍 3)Linux程序设计入门--文件操作 4)Linux程序设计入门--时间概念 5)Linux程序设计入门--信号处理 6)Linux程序设计入门--消息管理 7)Linux程序设计入门--线程操作 8)Linux程序设计入门--网络编程 9)Linux下C开发工具介绍 -linux under the direc
linux_C_Library
- Linux C的库函数集合的使用,包括文件操作函数,进程,信号处理,内存字符串等详细说明。-Linux C library function, the use of the collection, including file manipulation functions, processes, signal processing, memory, string and other details.
Linux_C
- Linux_C函数参考,包括终端控制,信号处理等-Linux_C function reference, including the terminal control, signal processing, etc.
ftp628_printer
- 这是在LINUX2.6.28下的FTP-628的驱动.编入内核即可.应用程序一次送入两行点阵数据,384*2个点阵,因为步进电机一步需要两行数据.在硬件上,请自行处理MOTO信号,和STB信号.可能PIN要先对.本人运行过了.没有问题.-This is LINUX2.6.28 under the FTP-628 driver. Can be incorporated into the kernel. Once the application data into two rows of dot m
linux3
- 使用系统调用对文件进行操作。SIGCHLD信号的处理——子进程的死亡。SIGSTOP和SIGCONT信号的使用。-Use system calls to manipulate files. SIGCHLD signal processing- the death of the child process. SIGSTOP and SIGCONT the use of signals.
C_function_under_Linux_Manual
- Linux下的C函数手册 用户组,信号处理,内存控制,接口处理,文件操作,环境变量,进程控制-C function manual under Linux user group, signal processing, memory control, interface processing, file operations, environment variables, process control
703ATimingThread
- 编写定时器程序中的一些内容,包括定时模块线程体函数,通过进程名获取进程ID的函数,信号处理函数。-Write some of the timer program, including the function of the timing module thread body, through the process to get the process ID function, signal processing function.
test27
- 程序,要求程序运行后进入一个无限循环,打印用户按下的键的值,当用户按下中断键(Ctrl+Z)时,进入程序的自定义信号处理函数,当用户再次按下中断键(Ctrl+Z)后,结束程序运行;-Procedures, requirements to run the program into an infinite loop, printing the user presses a key value, when the user presses the interrupt key (CTRL+ Z), cu
SPTK-3.5
- SPTK是一套语音信号处理工具为UNIX环境中,如LPC分析,PARCOR分析、LSP分析,PARCOR合成过滤器,LSP合成过滤器,矢量量化技术,以及其他扩展的版本。-SPTK is a suite of speech signal processing tools for UNIX environments, e.g., LPC analysis, PARCOR analysis, LSP analysis, PARCOR synthesis filter, LSP synthesis fi
1D_Gabor_transform
- 这个MATLAB软件包实现了小波在一维Gabior样转换的文件中所述: [1] K.N.乔杜里,M.,王凤琴,“建设希尔伯特变换的双 波基和Gabor变换,“对信号的IEEE交易 加工,第一卷。 57,没有。 9,3411-3425,2009年9月。 作者:K.N.乔杜里。 模块如下: --------------------------- 1。 demo.m 一个简单的例子演示软件的使用。 2。 autcorr.m
sleep
- sleep函数的完整实现 1. 实验要求: 1、使用alarm函数实现定时。 2、必须正确处理mysleep函数中的闹钟与调用者可能设置的闹钟之间的关系。例如,如何解决不同的信号处理函数的保存和恢复?如何处理调用者设置的闹钟比mysleep函数中的闹钟早响的问题?如何处理调用进程屏蔽SIGALRM信号? 3、不允许出现任何竟态条件(时间窗口)。 4、总之,mysleep的实现细节应当对调用者透明,也就是说,不论在实现mysleep函数时是否使用了alarm函数,对调用者是否以
apue_code
- linux c 进程间通信,信号处理源码-the linux c interprocess communication signal processing source code
dm6467suanfayizhi
- 达芬奇技术平台具有典型的ARM+DSP 分布式异构体系结构,操作系统为DSP/BIOS 的DSP 端,主要负责算法的开发及xDM标准的封装,并将数字信号的处理结果置于共享存储空间中,以供ARM端使用。而操作系统为Linux 的ARM 端通过Codec Engine API函数来调用算法,并配置引擎来查询算法的属性,负责将采集原始数据置于共享存储空间中供DSP 端压缩处理。根据算法实现流程可将其从底至上分算法开发、服务器配置、引擎配置、应用层开发四个部分。-DaVinci technology p
qq
- 利用管道技术实现父子进程间通信,具体流程:父进程以3秒为周期接收用户输入并发送到子进程,子进程接收到信息后显示并回传,父进程接收到回传信息后显示。父子进程在通信过程中采用信号中断处理方式进行处理,接收到“exit”字符串后父子进程均退出。(提示,采用SIGUSR1或SIGUSR2信号)-The use of pipeline technology communication between parent and child, the specific process: the parent pr
pandaboard_r2012b_v2_0
- 熊猫主板是一种开放硬件的单板计算机,能够以合理的速度运行 Linux,同时保持价格低廉。建立MATLAB的simulink模型来模拟熊猫主板的硬件支持。-he PandaBoard (www.pandaboard.org) is a low-cost, single-board computer designed for audio, video, and digital signal processing. With R2012b, Simulink provides built-i
producer-customer
- linux中的多线程编程,信号量处理线程间的同步和互斥问题-In Linux multithreaded programming, the signal processing problem of synchronization and mutex between threads