代码搜索:无线参数
找到约 10,000 项符合「无线参数」的源代码
代码结果 10,000
www.eeworm.com/read/458715/7290836
java register.java
package agenda;
import agenda.ManageUse;
import agenda.User;
import java.util.List;
//Register类用于管理用户注册信息
public class Register {
//参数格式为接收包含两个字符串元素的列表参数
public void doRegister(List list)
www.eeworm.com/read/444586/7611386
m autocorrelation.m
function [tau] = AutoCorrelation(X,maxLags,IsPlot)
% 自相关法求混沌时间序列重构的时间延迟
% 输入参数:X 混沌时间序列
% maxLags 最大时间延迟
% 输出参数:tau 时间延迟
ACF = autocorr(X,maxLags); % 求自相关函数
ACF = ACF(2:end)
www.eeworm.com/read/438832/7725305
sh set-pos.sh
#!/bin/bash
variable="one two three four five"
set -- $variable
# 将位置参数的内容设为变量"$variable"的内容.
first_param=$1
second_param=$2
shift; shift # 将最前面的两个位置参数移除.
remaining_params="$*"
echo
echo "f
www.eeworm.com/read/436694/7766028
cpp pid.cpp
#include
#include
void main()
{
double tao; //系统纯延时参数,一般为采样时间的整数倍
double ts; //采样时间
int n; //n=tao/ts
double kp,ki,kd; //PID控制器参数
double err
www.eeworm.com/read/436694/7766029
cpp pid2.cpp
#include
#include
void main()
{
double tao; //系统纯延时参数,一般为采样时间的整数倍
double ts; //采样时间
int n; //n=tao/ts
double kp,ki,kd; //PID控制器参数
double err
www.eeworm.com/read/436694/7766039
cpp 123.cpp
#include
#include
void main()
{
double tao; //系统纯延时参数,一般为采样时间的整数倍
double ts; //采样时间
int n; //n=tao/ts
double kp,ki,kd; //PID控制器参数
double err
www.eeworm.com/read/297292/8032590
txt 07-15.txt
/* 范例:7-15 */
#include
#include
void main(void)
{
/* 定义参数dest的字符数组destination[25] */
char destination[25];
/* 定义参数scr的字符指针scr1、scr2、scr3 */
char *scr1 = "tiger
www.eeworm.com/read/196940/8039887
cpp catulate.cpp
/*
******************************************************************************
*多项式计算程序
*功能:计算多项式Pn(x)=∑Ai*Xi(i=0~n)的值,输入参数为A0~Ai,x,n,输出Pn(x)的值。
*计算完毕后输出提示信息,程序根据输入参数判断是否继续执行。
* 200
www.eeworm.com/read/195641/8137022
m autocorrelation.m
function [tau] = AutoCorrelation(X,maxLags,IsPlot)
% 自相关法求混沌时间序列重构的时间延迟
% 输入参数:X 混沌时间序列
% maxLags 最大时间延迟
% 输出参数:tau 时间延迟
ACF = autocorr(X,maxLags); % 求自相关函数
ACF = ACF(2:end)