代码搜索结果
找到约 10,000 项符合
4 的代码
char4_4.m
x=0:8;
y=sin(x);
x1=0:.1:8;
y1=interp1(x,y,x1,'nearest') ;
y2=interp1(x,y,x1,'linear') ;
y3=interp1(x,y,x1,'spline') ;
y4=interp1(x,y,x1,'cubic') ;
plot(x,y,'o-',x1,y1,'b--',x1,y2,'k:',x1,y3,'r
keyboard4_4.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
keyboard4_4.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity keyboard4_4 is
port(
clk : in std_logic;
keyin : in std_logic_vector(3 do
p4-4.cpp
#include
#include
ifstream filein("shopping.in");
ofstream fileout("shopping.out");
int k,s[1001];
struct node{
node(int vv=0,node* nn=0){v=vv;next=nn;}
int v;
node*
keyboard4_4.vhd
--******************************************************************
--* 4x4标准键盘板读取并点亮开发板上相应led
--* Filename: keyboard4_4
--* 扫描键盘,译码并点亮开发板上相应led
--* 尚未仔细考虑一些细节问题,譬如防颤等
--************************
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]
p4_4.m
% Program P4_4
% Stability Test
clf;
den = input('Denominator coefficients = ');
ki = poly2rc(den);
disp('Stability test parameters are');
disp(ki);