代码搜索结果
找到约 10,000 项符合
6 的代码
6-2-6.cfm.htm
使用列表
6-1-6.cfm.htm
复选框
5-6-6.cfm.htm
创建快速读入的带图象的网页
m6_6_1.m
G=tf([5,5],[1,4,2,3,0]);
t=[0:0.1:150]';
u=sin(t+pi/6);
lsim(G,u,t) ;
title('正弦信号输出响应曲线');
xlabel('t');
ylabel('sin(t+pi/6)');
grid
m6_6_2.m
G=tf([5,5],[1,4,2,3,0]);
t=[0:0.1:150]';
u=cos(t+pi/6);
lsim(G,u,t) ;
title('余弦信号输出响应曲线');
xlabel('t');
ylabel('cos(t+pi/6)');
grid
ch6ex6.java
public class ch6ex6{
public static void main(String[]args){
//创建包装类的对象
Integer n=new Integer(42);
Double d=new Double(12.21);
Character c=new Character('w');
//使用对象的公共方法
System.out
6vv6.com.txt
\\\|///
\\ - - //
( @ @ )
┏━━━━━━━oOOo-(_)-oOOo━━━━━━━┓
┃
vopt6sas6b
library verilog;
use verilog.vl_types.all;
entity mux44 is
port(
i0 : in vl_logic_vector(3 downto 0);
i1 : in vl_logic_vector(3 downto 0);
chap6_6plant.m
function [sys,x0,str,ts]=s_function(t,x,u,flag)
switch flag,
case 0,
[sys,x0,str,ts]=mdlInitializeSizes;
case 1,
sys=mdlDerivatives(t,x,u);
case 3,
sys=mdlOutputs(t,x,u);
case {2,