代码搜索:信号路径优化
找到约 10,000 项符合「信号路径优化」的源代码
代码结果 10,000
www.eeworm.com/read/148230/12481903
frm frmfindpath.frm
VERSION 5.00
Begin VB.Form frmFindPath
BorderStyle = 3 'Fixed Dialog
Caption = "选择路径"
ClientHeight = 4185
ClientLeft = 4425
ClientTop = 2730
www.eeworm.com/read/181956/9223907
m myinfomax.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% out1为出信号,out2解混矩阵,x为观测信号
function [out1,out2]=myinfomax(x);
[row,col] = size(x);
x = x - (mean(x'))'*one
www.eeworm.com/read/374989/9376505
c my_signal.c
#include
#include
/*信号处理函数*/
void handler_sigint(int signo)
{
printf("recv SIGINT\n");
}
int main()
{
/*安装信号处理函数*/
signal(SIGINT, handler_sigint);
while(1)
www.eeworm.com/read/352274/10568266
m sigaxz1.m
function sigaxz1(action,in1,in2);
%SIGAXZ1 交互式信号演示 - 1 : 信号的 DFT
% Illustrating some basic signal processing concepts, such as
% sampling, aliasing, and windowing.
% possible actions:
% 'sta
www.eeworm.com/read/419410/10870526
c my_signal.c
#include
#include
/*信号处理函数*/
void handler_sigint(int signo)
{
printf("recv SIGINT\n");
}
int main()
{
/*安装信号处理函数*/
signal(SIGINT, handler_sigint);
while(1)
www.eeworm.com/read/243289/12950589
h mysem.h
/*
*
*mysem.h 信号量 lin shao chuan
*
*/
#ifndef __MYSEM_H__
#define __MYSEM_H__
#include "mymempool.h"
typedef struct __mysem_handle_
{int unused;}*HMYSEM;
/*
*
*创建信号量
*
*/
ex
www.eeworm.com/read/321110/13412334
h mysem.h
/*
*
*mysem.h 信号量 lin shao chuan
*
*/
#ifndef __MYSEM_H__
#define __MYSEM_H__
#include "mymempool.h"
typedef struct __mysem_handle_
{int unused;}*HMYSEM;
/*
*
*创建信号量
*
*/
ex
www.eeworm.com/read/483253/6602340
m main_xian_shi.m
%信号观测界面
close all;
clear;
clc;
PV=[235 180 664 463];
m_gui_luyin=figure('Position',PV,...
'Resize','off',...
'Numbertitle','off',...%'color',BACK_COLOR,...
'Name','信号观测');
set(m_gui
www.eeworm.com/read/483253/6602341
asv main_xian_shi.asv
%信号显示
close all;
clear;
clc;
PV=[235 180 664 463];
m_gui_luyin=figure('Position',PV,...
'Resize','off',...
'Numbertitle','off',...%'color',BACK_COLOR,...
'Name','信号观测');
set(m_gui_l
www.eeworm.com/read/476987/6743881
cpp scxf2.cpp
利用信号量和VC++程序设计环境实现生产者/消费者问题。
/////////////////////////////////////////////////////////////////////
//! 定义信号量
HANDLE m_S_Producer; // Semaphore
HANDLE m_S_Consumer; //