代码搜索:预置数
找到约 10,000 项符合「预置数」的源代码
代码结果 10,000
www.eeworm.com/read/242302/13078161
txt 如何获得文件在dos状态下的短文件名.txt
你 可 以 使 用 GetShortPathName将 长 文 件 名 转 换 为 DOS短 文 件 名 。 该 函 数 定 义 为 :
Declare Function GetShortPathName Lib "kernel32" _
Alias "GetShortPathNameA" (ByVal lpszLongPath As String, _
www.eeworm.com/read/242302/13078280
txt 如何判断某个文件是否已经打开.txt
你 可 以 用 下 面 这 个 函 数 来 检 查 一 个 文 件 是 否 被 打 开 。
Function IsOpen(sFile As String) As Boolean
Dim fFile As Integer
fFile = FreeFile()
On Error GoTo ErrOpen
Open sFile For
www.eeworm.com/read/242302/13078383
txt qb中cv?和mk?$两组函数对应的vb函数.txt
如 果 要 模 拟 这 些 函 数 , 可 以 使 用 下 面 的 代 码 :
Declare Sub CopyMemory Lib "KERNEL32" Alias "RtlMoveMemory" ( _
hpvDest As Any, hpvSource As Any, ByVal cbCopy As Long)
Function MKI$ (x As
www.eeworm.com/read/242302/13078444
txt 如何获得任意磁盘的剩余空间.txt
2G以 下 的 硬 盘 可 以 使 用 API函 数 GetDiskFreeSpace。 下 面 就 是 一 个 例 子 。
Declare Function GetDiskFreeSpace Lib "kernel32" Alias _
"GetDiskFreeSpaceA" (ByVal lpRootPathName As String, _
lpSe
www.eeworm.com/read/326765/13118687
m ccdf_slm_sim.m
%***************************************************
% SLP-OFDM系统PARP抑制算法仿真,BPSK调制
% N 子载波数
% M 随机相位序列个数
% K 输入序列数
% X 发送符号矩阵,N*K维
% P 随机相位矩阵,N*M维
%-------------------------------------------
www.eeworm.com/read/326633/13128864
cpp 代码2.cpp
#include
#include
#include
#include "windows.h"
#define MAX_PROCESS 32 //最大进程数
#define MAX_COURCE 64 //最大资源类别
int MAX_FACT_PROC
www.eeworm.com/read/139506/13152026
bas nlmivmainmodule.bas
Attribute VB_Name = "MainModule"
Sub Main()
Dim n As Integer, m As Integer
Dim s As String
' 3个未知数
m = 3
' 2次方程
n = 2
' 分配初值和解的内存
ReDim x(n) As Dou
www.eeworm.com/read/240925/13187309
cpp sl307.cpp
// sl307.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "iostream.h"
int main()
{
int num=1;
cout
www.eeworm.com/read/323702/13325894
m shiyong.m
clear all
close all
hold off
%系统阶数
sysorder =5 ;
% 抽样
N=2000;
signal=randn(N,1);
n = 0.1*randn(N,1);
[b,a] = butter(2,0.25);
Gz = tf(b,a,-1);
h= [0.0976;
0.2873;
0.3360;
0