代码搜索:normal
找到约 10,000 项符合「normal」的源代码
代码结果 10,000
www.eeworm.com/read/142722/12929843
pas model3d.pas
unit Model3D;
interface
uses
Windows, Graphics, Math, Dialogs, ColorConv;
type
TRGBTripleArray = array[0..1000] of TRGBTriple;
PRGBTripleArray = ^TRGBTripleArray;
TRGBFloat =
www.eeworm.com/read/142361/12950283
mdl exm1_2.mdl
Model {
Name "exm1_2"
Version 3.00
SimParamPage "Solver"
SampleTimeColors off
InvariantConstants off
WideVectorLines off
ShowLineWidths off
ShowPortDataTypes
www.eeworm.com/read/142353/12950785
mdl spm1.mdl
Model {
Name "spm1"
Version 3.00
SimParamPage "Solver"
SampleTimeColors off
InvariantConstants off
WideVectorLines off
ShowLineWidths off
ShowPortDataTypes
www.eeworm.com/read/329331/12960212
m feefun02.m
function fee=feefun02(a,b)
%这里 a 是标定值向量,b是相对容差向量,loss是损失
loss=0;h=0.001;
for i=1:7
a1=a;a1(i)=a1(i)+h;
a2=a;a2(i)=a2(i)-h;
dy(i)=(sqfun0(a1)-sqfun0(a2))/(2*h);
end;
deltaa=a.*b/3;
s=
www.eeworm.com/read/141594/12996647
arff weather.nominal.arff
@relation weather.symbolic
@attribute outlook {sunny, overcast, rainy}
@attribute temperature {hot, mild, cool}
@attribute humidity {high, normal}
@attribute windy {TRUE, FALSE}
@attribute play {yes,
www.eeworm.com/read/141594/12996708
arff weather.nominal.with.missings.arff
@relation weather.symbolic
@attribute outlook {sunny, overcast, rainy}
@attribute temperature {hot, mild, cool}
@attribute humidity {high, normal}
@attribute windy {TRUE, FALSE}
@attribute play {yes,
www.eeworm.com/read/328253/13037808
m ex2309.m
%例23-9 坐标轴范围和比例设置(M-file)
%Ex23-09 axis example
clear
clc
t=0:0.01*pi:2*pi;
x=sin(t);
y=cos(t);
for i=1:9
subplot(3,3,i)
plot(x,y)
end
subplot(3,3,1)
axis auto normal
title('axis