代码搜索:Calculating

找到约 1,772 项符合「Calculating」的源代码

代码结果 1,772
www.eeworm.com/read/494656/6359560

m calculating_secant_value.m

% Root finding using Secant method % % The function is defined in another script file as follows: % (Note that this won't accept vector inputs) % % function y = fcn(x) % y = x^4 - 5*x^3
www.eeworm.com/read/394284/8236152

htm 4calculating electric power.htm

Calculating electric
www.eeworm.com/read/127767/14336075

txt e457. calculating the checksum of a file.txt

try { // Compute Adler-32 checksum CheckedInputStream cis = new CheckedInputStream( new FileInputStream("filename"), new Adler32()); byte[] tempBuf = new byte[1
www.eeworm.com/read/127767/14337179

txt e456. calculating the checksum of a byte array.txt

byte[] bytes = "some data".getBytes(); // Compute Adler-32 checksum Checksum checksumEngine = new Adler32(); checksumEngine.update(bytes, 0, bytes.length); long checksum = ch