代码搜索:corresponding

找到约 4,250 项符合「corresponding」的源代码

代码结果 4,250
www.eeworm.com/read/491360/1191620

m bin2eight.m

function y = bin2eight(x) % bin2eight % % Converts binary data to an eight bit form % Accepts 1x8 array and returns the corresponding decimal y = 0; k = 0; for i = 1:8 y = y + x(8-k)*2^k
www.eeworm.com/read/491360/1191689

m bin2eight.m

function y = bin2eight(x) % bin2eight % % Converts binary data to an eight bit form % Accepts 1x8 array and returns the corresponding decimal y = 0; k = 0; for i = 1:8 y = y + x(8-k)*2^k
www.eeworm.com/read/485361/1263296

m bin2eight.m

function y = bin2eight(x) % bin2eight % % Converts binary data to an eight bit form % Accepts 1x8 array and returns the corresponding decimal y = 0; k = 0; for i = 1:8 y = y + x(8-k)*2^k
www.eeworm.com/read/485361/1263365

m bin2eight.m

function y = bin2eight(x) % bin2eight % % Converts binary data to an eight bit form % Accepts 1x8 array and returns the corresponding decimal y = 0; k = 0; for i = 1:8 y = y + x(8-k)*2^k
www.eeworm.com/read/240175/4578667

m bin2int.m

function Int_Value=bin2int(Bin_String) % BIN2INT Convert a binary code 'Bin_String' to corresponding integer number. % Copyright (c) 1998-2000 Jiming Liu and Jianbing Wu String_Size=size(Bin_Str
www.eeworm.com/read/229812/4750126

gml rftgexmp.gml

:H2.EXMP :xmp Format&gml. &gml.eXMP. :exmp :I2 refid='gtexmp' pg=major.gtexmp :p.This tag signals the end of an example. A corresponding :hp2.&gml.xmp:ehp2. tag must be previously specified for
www.eeworm.com/read/229812/4750453

gml rftgelay.gml

:H2.ELAYOUT :xmp Format&gml. &gml.eLAYOUT. :exmp :I2 refid='gtelayo' pg=major.gtelayo :p.This tag signals the end of a layout section. A corresponding :hp2.&gml.layout:ehp2. tag must be previou
www.eeworm.com/read/173155/5376215

m bin2eight.m

function y = bin2eight(x) % bin2eight % % Converts binary data to an eight bit form % Accepts 1x8 array and returns the corresponding decimal y = 0; k = 0; for i = 1:8 y = y + x(8-k)*2^k
www.eeworm.com/read/173155/5376283

m bin2eight.m

function y = bin2eight(x) % bin2eight % % Converts binary data to an eight bit form % Accepts 1x8 array and returns the corresponding decimal y = 0; k = 0; for i = 1:8 y = y + x(8-k)*2^k
www.eeworm.com/read/349545/3143779

m strcat.m

function t = strcat(varargin) %STRCAT Concatenate strings. % T = STRCAT(S1,S2,S3,...) horizontally concatenates corresponding % rows of the character arrays S1, S2, S3 etc. All input arrays mus