代码搜索:4
找到约 10,000 项符合「4」的源代码
代码结果 10,000
www.eeworm.com/read/114383/15055540
m example4_4.m
%分别定义两段时间Time1和Time2,对应信号的不同频率时段
Time1=0:0.05:4;
Time2=4.05:0.024:6;
Time=[Time1 Time2];
%得到待预测的目标信号
T=[cos(Time1*4*pi) cos(Time2*8*pi)];
T=con2seq(T);
%绘出目标信号的曲线,并指定给输入
figure;
plot(Time,cat
www.eeworm.com/read/114381/15055833
m example4_4.m
%写一个函数,它计算目标函数值、目标函数的梯度和稀疏三阶海色矩阵。
function [f,g,H] = brownfgH(x)
% 计算目标函数。
n=length(x); y=zeros(n,1);
i=1:(n-1);
y(i)=(x(i).^2).^(x(i+1).^2+1)+(x(i+1).^2).^(x(i).^2+1);
f=sum(y);
% 计算函数梯度。
www.eeworm.com/read/215497/15059561
m program_4_4.m
% Program 4_4
% Program to Design Elliptic Lowpass Filter
%
% Read in the filter order, passband edge frequency,
% passband ripple in dB and minimum stopband
% attenuation in dB
N = input('Order
www.eeworm.com/read/215497/15059792
m program_4_4.m
% Program 4_4
% Program to Design Elliptic Lowpass Filter
%
% Read in the filter order, passband edge frequency,
% passband ripple in dB and minimum stopband
% attenuation in dB
N = input('Order
www.eeworm.com/read/215196/15070968
m chap4_4.m
%Adaptive PID control based on RBF Identification
clear all;
close all;
xite=0.25;
alfa=0.05;
belte=0.01;
x=[0,0,0]';
ci=30*ones(3,6);
bi=40*ones(6,1);
w=10*ones(6,1);
h=[0,0,0,0,0,0]
www.eeworm.com/read/214909/15084181
m chap4_4.m
%Adaptive PID control based on RBF Identification
clear all;
close all;
xite=0.25;
alfa=0.05;
belte=0.01;
x=[0,0,0]';
ci=30*ones(3,6);
bi=40*ones(6,1);
w=10*ones(6,1);
h=[0,0,0,0,0,0]
www.eeworm.com/read/214824/15086616
cpp xt4-4.cpp
#include
using namespace std;
int main()
{int fac(int);
int a,b,c,sum=0;
couta>>b>>c;
sum=sum+fac(a)+fac(b)+fac(c);
cout
www.eeworm.com/read/213373/15136101
cpp c4-4.cpp
#include
using namespace std;
inline int max(int,int, int);
int main()
{
int i=10,j=20,k=30,m;
m=max(i,j,k);
cout