代码搜索结果
找到约 10,000 项符合
Control System 的代码
lcd_control.v
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 21:02:35 12/08/2007
// Design Name: CMKing
control_break.m
% control_break.m
% break控制语句示例
% 计算浮点数的精度数值
eps1=1;
for num=1:1000
eps1=eps1/2;
if(1+eps1)>1
continue;
end
eps1=eps1*2;
break;
end
fprintf('eps的数据(浮点数的精度)为:\n\
control_continue.asv
% control_continue.m
% continue控制语句
% 统计文本文件的行数
fid = fopen('pascal.m','r');
count=0;
num=0;
while ~feof(fid)
line = fgetl(fid);
if isempty(line) | strncmp(line,'%',1)
num=num
control_continue.m
% control_continue.m
% continue控制语句
% 统计程序的行数和注释行及空行的数目
fid = fopen('pascal.m','r');
count=0;
num=0;
while ~feof(fid)
line = fgetl(fid);
if isempty(line) | strncmp(line,'%',1)
control_input.m
% control_input.m
% input控制语句示例
univ=input('输入你心目中最好的大学:','s');
reply=input('你想重新选择吗? Y/N [Y]: ', 's');
if isempty(reply)
reply = 'Y';
end
if reply=='Y'
disp('你已经选择过了');
else
dis
lqr_control.txt
///////////////////////////////////////////////////////////////////////////////////
%LQR控制器性能分析
clc;
clear all;
A=[-0.0191,-0.0008,0.0170,-0.3371,0.3839,0,0,-9.7924;
0.0010,-0.0349,-0.0017,-0.403
switch_control.pl
#!/usr/bin/perl
use SNMP;
use Getopt::Long;
GetOptions("mac=s" => \$gMac,
"index=s" => \$gIndex,
"action=s" => \$gAction,
);
($gMac,$gAction,$gIndex) = verifyInput
comm_control.h
#if !defined (COMM_CONTROL_H_INCLUDED)
#define COMM_CONTROL_H_INCLUDED
// Only needed for versions prior to Visual C++ 6.0
#if _MSC_VER < 1200
//-----------------------------------------------
control_interface.v
module control_interface(
CLK,
RESET_N,
CMD,
ADDR,
REF_ACK,
INIT_ACK,
CM_ACK,
NOP,
READA,
WRITEA,
REFRESH,