代码搜索:公差标注

找到约 582 项符合「公差标注」的源代码

代码结果 582
www.eeworm.com/read/391300/8410611

txt mch03-01.txt

坐标轴的标注 t=0:pi/20:2*pi; plot(t,sin(t)) xlabel('t = 0 到 2\pi','FontSize',16) ylabel('sin(t)','FontSize',16) title('\it{从 0 to 2\Pi 的正弦曲线}','FontSize',16)
www.eeworm.com/read/186670/8919335

txt mch03-01.txt

坐标轴的标注 t=0:pi/20:2*pi; plot(t,sin(t)) xlabel('t = 0 到 2\pi','FontSize',16) ylabel('sin(t)','FontSize',16) title('\it{从 0 to 2\Pi 的正弦曲线}','FontSize',16)
www.eeworm.com/read/365527/9858615

m exa10_9sub.m

%标注的程序略去,另外建立一个子函数exlbs.m,其内容为: function xvalues=exa10_9sub(tvalues,w) xvalues= sqrt(3)/3*exp(-2* tvalues).*sin(w* tvalues +pi/6);
www.eeworm.com/read/403956/11495156

h worldwall.h

//----------------------------------------------------------------------------- // Torque RPG // 在Terrain边界加上世界墙,在TerrainBlock的Tile属性为0时,较适用;用来标注地形范围, // 因为TerrainBlock的Tile为1时,地形是无限大的。 // 李亦编写 /
www.eeworm.com/read/114551/15048207

txt mch03-01.txt

坐标轴的标注 t=0:pi/20:2*pi; plot(t,sin(t)) xlabel('t = 0 到 2\pi','FontSize',16) ylabel('sin(t)','FontSize',16) title('\it{从 0 to 2\Pi 的正弦曲线}','FontSize',16)
www.eeworm.com/read/38039/1090667

mnu dim_params2.mnu

DIM#PARAMS 尺寸参数 # remove the # sign and enter foreign help string in this line Dim#Type 尺寸类型 Convert to other dimension type. 转换为其他尺寸类型。 Scheme 布置 Modify dimensioning scheme of a feature. 修改特征的标注形式 A
www.eeworm.com/read/38039/1091394

mnu bom_balons.mnu

BOM#BALLOONS BOM球标 # remove the # sign and enter foreign help string in this line Set#Region 设置区域 Allow a region to have BOM balloon notes. 允许区域有 BOM 球标注解。 Clear#Region 清除区域 Disallow a region
www.eeworm.com/read/391300/8410518

txt mch04-14.txt

饼图的标注 X = [19.3 22.1 51.6; 34.2 70.3 82.4; 61.4 82.9 90.8; 50.5 54.9 59.1; 29.4 36.3 47.0]; x = sum(X); h = pie(x,explode); colormap summer % 绘制不带分离切块的饼图,获取其句柄 textObjs = find
www.eeworm.com/read/186670/8919243

txt mch04-14.txt

饼图的标注 X = [19.3 22.1 51.6; 34.2 70.3 82.4; 61.4 82.9 90.8; 50.5 54.9 59.1; 29.4 36.3 47.0]; x = sum(X); h = pie(x,explode); colormap summer % 绘制不带分离切块的饼图,获取其句柄 textObjs = find
www.eeworm.com/read/426535/9015085

m ex1512.m

%例15-12 概率分布函数 x=-4:4; y=unidcdf(x,10) tx=-5:0.01:12; plot(tx,ty,x,y,'*') %绘制离散均匀分布的分布函数图并标注计算点,如图15-17