代码搜索:Block

找到约 10,000 项符合「Block」的源代码

代码结果 10,000
www.eeworm.com/read/384940/8832337

m block.m

function [enables,prompts] = block(a,object,values,enables,prompts) display = 'plot(xc,yc), color(''blue''), text(-0.5,0.1,'; num = str2num(values{2}); type = get_param(object,'MaskType'); blocks =
www.eeworm.com/read/384940/8832488

m block.m

function [enables,prompts] = block(a,object,values,enables,prompts) display1 = ['plot(x,y,x+1.4,y,[2.4 2.8],[0 0],[3.1 3.5],[0 0],[-1 -2],[0 0],0,2), color(''green''), plot([2.95 2.95],', ...
www.eeworm.com/read/384940/8832587

m block.m

function [enables,prompts] = block(a,object,values,enables,prompts) switch values{8} case 'on' cx1 = 'plot([0 1 1 0 0],[0 0 1 1 0]), '; cx2 = 'color(''blue''), '; cx3 = 'plot([0 1],[0 1]
www.eeworm.com/read/384940/8832964

m block.m

function [enables,prompts] = block(a,object,values,enables,prompts) display1 = ['plot([1 0.8],[0.5 0.5],[0 0.2],[0.5 0.5],', ... '[0.8 0.8 0.2 0.2 0.8],[0 1 1 0 0]), ' ... 'co
www.eeworm.com/read/285490/8836056

c block.c

#include #include #include int main() { char block[1024]; int in, out; int nread; in = open("file.in", O_RDONLY); out = open("file.out", O_WR
www.eeworm.com/read/187102/8856072

test block.test

#! /bin/sh # Make sure block comments are not double-spaced. # Report from Fran鏾is Pinard. . $srcdir/defs || exit 1 cat > Makefile.am
www.eeworm.com/read/428476/8865511

h block.h

#ifndef BLOCK_H #define BLOCK_H #include class TBlock { public: TBlock() :iType(0), iRot(0) {} static int BlockCount(); static TBlock Block(int id); static TBlock Rando
www.eeworm.com/read/428476/8865557

cpp block.cpp

#include "block.h" #include const int numBlocks=7; const TUint16 bl_types[4][numBlocks]= // #### ### ### ## ## ## ### // # # ##
www.eeworm.com/read/285142/8866282

v block.v

module block(c,b,a,clk); output c,b; input clk,a; reg c,b; always @(posedge clk) begin b=a; c=b; end endmodule
www.eeworm.com/read/384201/8891157

v block.v

module block(c,b,a,clk); output c,b; input clk,a; reg c,b; always @(posedge clk) begin b=a; c=b; end endmodule