代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/192685/8366779
txt 如何在vb6.0中如何调用matlab中的数学函数库.txt
如 果 你 不 会 使 用 VC++, 可 以 通 过 ActiveX技 术 调 用 MATLAB( 机 器 中 必 须 安 装 有 MATLAB) 。 在 Matlab的 文 档 apiguide.pdf中 第 7章 有 详 细 的 介 绍 并 提 供 了 例 子 。
www.eeworm.com/read/292219/8366780
asv label trans.asv
%七参数坐标转换公式
clear;
X1_2=input('\nX1_2=');
Y1_2=input('\nY1_2=');
Z1_2=input('\nZ1_2=');
X1_1=input('\nX1_1=');
Y1_1=input('\nY1_1=');
Z1_1=input('\nZ1_1=');
X2_2=input('\nX2_2=');
Y2_2=input('
www.eeworm.com/read/192685/8366781
txt 用vc开发的activex控件的方法使用了字符指针,在vb中如何声明.txt
你 只 能 修 改 VC中 的 声 明 。 VB如 果 遇 到 它 不 支 持 的 数 据 类 型 , 你 也 无 法 修 改 VB中 的 声 明 。 你 应 该 在 VC中 修 改 字 符 串 为 BSTR, 这 是 VB支 持 的 类 型 。 如 果 你 使 用 MFC, 那 么 ClassWizard会 自 动 把 BSTR类 型 转 换 为 字 符 指 针 , 你 不 会 感 觉 到 不
www.eeworm.com/read/392021/8366782
m dsdemo2.m
% Demonstrate simulateDSM and simulateSNR
clc
fprintf(1,'\t\t\tDiscrete-Time Simulation\n');
if exist('LiveDemo','var') == 0
LiveDemo=0;
end
echo on
OSR = 32;
H = synthesizeNTF(5,OSR,1);
N = 8192;
www.eeworm.com/read/192685/8366783
txt 在vfp中如何调用vb编写的.dll或.exe文件.txt
VB生 成 的 ActiveX DLL/EXE, 需 要 使 用 CreateObject调 用 , 就 象 在 VFP中 调 用 Excel一 样
www.eeworm.com/read/392021/8366784
m dsclansntf.m
function H = dsclansNTF(x,order,rmax,Hz)
% Conversion of clans parameters into a NTF.
% Translate x into H.
% I've changed the relationships between (zeta,wn) and x
% in order to guarantee LHP roots
www.eeworm.com/read/292219/8366785
m kf_gg.m
%------------------------gps/galileo双系统定位程序-------by zhang zhirong----------------%
clear
%------------- 参数定义 -----------%
pi=3.1415926;
C=3.0e8; %光速
a_1=26609e3; %gps轨道
www.eeworm.com/read/192685/8366786
txt 如何检查编译后控件的合法性.txt
你 可 以 选 择 菜 单 “ 工 程 |工 程 属 性 ” , 在 对 话 框 中 选 择 “ 要 求 许 可 证 关 键 字 对 话 框 ” , 这 样 可 以 实 现 设 计 时 的 许 可 认 证 。 当 创 建 文 件 时 将 会 生 成 一 个 Visual Basic 授 权 文 件 ( *.vbl) 。 当 要 使 用 部 件 时 , *.vbl 必 须 已 经 在 用 户 机 器
www.eeworm.com/read/392021/8366787
m designlcbp.m
function [param,H,L0,ABCD,x] = designLCBP(n,OSR,opt,Hinf,f0,t,form,x0,dbg)
%[param,H,L0,ABCD,x]=designLCBP(n=3,OSR=64,opt=2,Hinf=1.6,f0=1/4,t=[0 1],form='FB',x0,dbg=0)
%Design an LC modulator of order
www.eeworm.com/read/292219/8366788
asv ver90togeo90.asv
% PE-90直角坐标转换成PE-90地理坐标
clear;
input('\n\ninput vertical_90:'); % 输入PE-90坐标系下的直角坐标值
X_90=input('\nX_90=');