代码搜索:Vector
找到约 10,000 项符合「Vector」的源代码
代码结果 10,000
www.eeworm.com/read/101557/15826495
m dmodred.m
function [ab,bb,cb,db] = dmodred(a,b,c,d,elim)
%DMODRED Discrete-time model state reduction.
% [Ab,Bb,Cb,Db] = DMODRED(A,B,C,D,ELIM) reduces the order of a model
% by eliminating the states specifi
www.eeworm.com/read/101557/15826507
m damp.m
function [wnout,z] = damp(a)
% DAMP Natural frequency and damping factor for continuous systems.
% [Wn,Z] = DAMP(A) returns vectors Wn and Z containing the
% natural frequencies and damping factors
www.eeworm.com/read/101557/15826523
m modred.m
function [ab,bb,cb,db] = modred(a,b,c,d,elim)
%MODRED Model state reduction.
% [Ab,Bb,Cb,Db] = MODRED(A,B,C,D,ELIM) reduces the order of a model
% by eliminating the states specified in vector ELIM
www.eeworm.com/read/101204/15841760
m mmono.m
function f=mmono(x)
%MMONO Test for Monotonic Vector.
% MMONO(X) where X is a vector returns:
% 2 if X is strictly increasing,
% 1 if X is non decreasing,
% -1 if X is non increasing,
%
www.eeworm.com/read/100869/15863424
cpp sharp.cpp
/**** LISTING 1 (BEGIN) ****/
void genCubicFunction()
{
// Do this so we can treat each endpoint and tangent vector as a separate array.
float* p0 = points;
float* p1 = points + 3;
www.eeworm.com/read/290889/8455658
vhd disp.vhd
LIBRARY ieee;
use ieee.std_logic_1164.all;
ENTITY disp IS
PORT(
d : IN STD_LOGIC_VECTOR(3 downto 0);
q : OUT STD_LOGIC_vector(6 downto 0));
END disp;
ARCHITECTURE disp_arc
www.eeworm.com/read/433021/8552197
vhd testrom.vhd
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all;
entity TESTROM is
port (
EN: in STD_LOGIC;
CLK: in STD_LOGIC;
hs : out std_logic;