代码搜索:normal
找到约 10,000 项符合「normal」的源代码
代码结果 10,000
www.eeworm.com/read/290246/8492665
mdl chap5_2sim.mdl
Model {
Name "chap5_2sim"
Version 3.00
SimParamPage "Solver"
SampleTimeColors off
InvariantConstants off
WideVectorLines off
ShowLineWidths off
ShowPortDataTy
www.eeworm.com/read/290246/8492830
mdl chap7_3sim.mdl
Model {
Name "chap7_3sim"
Version 3.00
SimParamPage "Diagnostics"
SampleTimeColors off
InvariantConstants off
WideVectorLines off
ShowLineWidths off
ShowPortD
www.eeworm.com/read/290246/8492956
mdl chap8_2sim.mdl
Model {
Name "chap8_2sim"
Version 3.00
SimParamPage "Solver"
SampleTimeColors off
InvariantConstants off
WideVectorLines off
ShowLineWidths off
ShowPortDataTy
www.eeworm.com/read/289498/8547500
eqn clock.fit.eqn
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions, and any o
www.eeworm.com/read/432935/8562115
asv plot_axis_params.asv
% plot_axis_params.m
% plot函数坐标轴参数的设置示例
% 绘制参数化的椭圆
t=[0:pi/50:2*pi]';
x=4*sin(t);
y=5*cos(t);
% 绘制一:normal
subplot(2,2,1);
plot(x,y);
axis normal;
grid on;
title('figure1: normal');
% 绘制二:
www.eeworm.com/read/432935/8562206
m plot_axis_params1.m
% plot_axis_params1.m
% 根据设置参数来设置的示例
x=logspace(-2,0,500);
y=(sin(1./x).^3)./x;
% 绘制一:normal
subplot(2,2,1);
plot(x,y);
axis normal;
grid on;
title('figure1: normal');
% 绘制二:y-logx
subplot(