代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/292219/8366769
asv labeltrans.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/8366770
txt 如何实现activex控件在vb环境可以编译,但一运行就提示没有许可.txt
当 在 VB环 境 中 要 使 用 一 个 控 件 时 , VB会 调 用 ActiveX控 件 的 VerifyUserLicense函 数 , 如 果 函 数 返 回 TRUE, 就 说 明 用 户 有 合 法 的 许 可 , 可 以 在 VB环 境 中 使 用 。 在 编 译 成 EXE或 DLL后 , VB调 用 ActiveX控 件 的 GetLicenseKey函 数 获 得 运 行
www.eeworm.com/read/292219/8366771
asv geo84tover84.asv
% WGS-84下地理坐标转换成PE-90下
clear;
input('input geography_84:'); % 输入WGS-84坐标系下的地理坐标值
phi_84=input('phi_84=');
www.eeworm.com/read/192685/8366772
txt 怎么样才能取消对控件的注册.txt
在 命 令 行 使 用
RegSvr32 /u xxx.ocx
就 完 成 取 消 xxx.ocx的 注 册 。
www.eeworm.com/read/292219/8366773
m picture1.m
figure(1);
plot3(X_84,Y_84,Z_84,'b-',X_90,Y_90,Z_90,'r--');
figure(2);
plot3(phi_84,lamda_84,H_84,'b-',phi_90,lamda_90,H_90,'r--');
figure(3);
plot3(Delta_X,Delta_Y,Delta_Z,'b-');
figure(4);
pl
www.eeworm.com/read/192685/8366774
txt 为什么无法为自己设计的控件的picture属性赋值.txt
Picture属 性 有 点 特 殊 , 一 般 的 对 象 都 只 有 Property Set, 而 没 有 Property Let过 程 , 但 Picture属 性 应 该 包 括 这 两 个 过 程 。 你 的 代 码 中 没 有 Property Let过 程 , 所 以 只 能 使 用 Set UserControl.Picture=LoadPicture([stringexpre
www.eeworm.com/read/392021/8366775
m bilogplot.m
function bilogplot(V,f0,fbin,x,y,fmt)
% bilogplot(V,f0,fbin,x,y) Plot two side-by-side spectra
% V Hann-windowed FFT
% f0 bin number of center frequency
% fbin bin number of test tone
% x xmin
www.eeworm.com/read/192685/8366776
txt vb的activex控件不能在vfp中使用.txt
VFP对 ActiveX控 件 的 兼 容 性 不 太 好 , 所 以 经 常 有 这 样 的 事 情 发 生 。 有 时 VC的 基 于 ATL的 控 件 也 不 能 在 VFP中 使 用 。 你 可 以 参 考 微 软 的 Knowledge Base的 文 章:“ PRB: Adding VB Custom Method Control Causes Fault in VFP5” 。 这 篇
www.eeworm.com/read/292219/8366777
m wgs84tope90.m
% WGS-84坐标转换成PE-90坐标
clear;
input('\n\ninput geography_84:'); % 输入WGS-84坐标系下的地理坐标值
i=1;
while i
www.eeworm.com/read/392021/8366778
m mod1.m
function mod = mod1()
% mod = mod1()
% Populate a structure describing the first-order modulator
A=1;
B=[1 -1];
C=1;
D=[0 0];
mod.ABCD=[A B; C D];
[mod.H mod.G] = calculateTF(mod.ABCD);