代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/292217/8366820
m gps_position.m
%%%% gps position %%%%%
clear;
%------------- 参数定义 -----------%
pi=3.1415926;
C=3.0e8; %光速
a=26609e3; %轨道长半轴长,单位已经换算为 m
e=0.006; %轨道的偏心率
i_0=55*pi/180;
www.eeworm.com/read/392021/8366821
m evaltfp.m
function H=evalTFP(Hs,Hz,f)
% H=evalTFP(Hs,Hz,f)
% Compute the value of a transfer function product Hs*Hz at a frequency f,
% where Hs is a cts-time TF and Hz is a discrete-time TF.
% Both Hs and Hz a
www.eeworm.com/read/292217/8366822
m gps_satellite_distribute.m
% %%%%%% epoch:2007-11-13 03:57:16 %%%%%
% orbit1_gps=[1 4.5400 102.2000;2 0.9291 119.6900;3 2.9457 121.1930;4 1.5982 201.6000;5 3.8443 279.3092;6 3.8983 310.5221;
% 7 56.0809 73.0584;8 6
www.eeworm.com/read/192685/8366823
txt 如何定义象listitems那样的属性.txt
其 实 这 样 的 属 性 并 不 是 象 你 想 象 的 那 么 定 义 的 。 首 先 , 利 用 一 个 自 定 义 的 类 模 块 定 义 ListItems属 性 , 然 后 , 在 ListItems中 定 义 一 个 函 数 ( 假 设 叫 SomeFunc) , 该 函 数 有 一 个 参 数 index, 返 回 类 型 为 ListItem类 型 , 然 后 利 用 菜 单 项
www.eeworm.com/read/292217/8366824
fig pdop_value.fig
www.eeworm.com/read/392021/8366825
m lcobj1.m
function [objective,constraints] = LCObj1(x,param,max_radius,dbg)
%function [objective,constraints] = LCObj1(x,param,max_radius,dbg)
% The objective and constraints function for the initial optimizati
www.eeworm.com/read/292217/8366826
fig gps_satellite_distribute1.fig
www.eeworm.com/read/292217/8366827
fig gps_satellite_distribute3.fig
www.eeworm.com/read/192685/8366828
txt active控件和dbgrid控件放在同一form上如何编写的控件能够读取dbgrid的数据.txt
在 控 件 中 添 加 对 DBGrid的 引 用 , 添 加 一 个 只 写 属 性 :
dim withevents m_dbgrid as dbgrid
public property set FriendDBGrid (pDBGrid as dbgrid)
set m_dbgrid=pdbgrid
end property
在