代码搜索:Difference

找到约 3,389 项符合「Difference」的源代码

代码结果 3,389
www.eeworm.com/read/451329/7467135

c ftime.c

#include #include #include void main(void) { struct timeb timezone; tzset(); ftime(&timezone); printf("Seconds since 1 January 1970 (GMT)
www.eeworm.com/read/450639/7479608

c difmag.c

/*********************************************************************** * * DIFMAG Version 49 * ********************************************************************** * * Compute Average Magni
www.eeworm.com/read/450470/7483337

c timezone.c

#include #include void main(void) { tzset(); printf("Difference between local and GMT is %d hours\n", timezone / 3600); }
www.eeworm.com/read/450470/7483339

c ftime.c

#include #include #include void main(void) { struct timeb timezone; tzset(); ftime(&timezone); printf("Seconds since 1 January 1970 (GMT)
www.eeworm.com/read/449861/7495532

cpp glc.cpp

#include "nmea0183.h" #pragma hdrstop /* ** Author: Samuel R. Blackburn ** Internet: sam_blackburn@pobox.com ** ** You can use it any way you like as long as you don't try to sell it. ** **
www.eeworm.com/read/449861/7495556

cpp gtd.cpp

#include "nmea0183.h" #pragma hdrstop /* ** Author: Samuel R. Blackburn ** Internet: sam_blackburn@pobox.com ** ** You can use it any way you like as long as you don't try to sell it. ** **
www.eeworm.com/read/449861/7495605

cpp lcd.cpp

#include "nmea0183.h" #pragma hdrstop /* ** Author: Samuel R. Blackburn ** Internet: sam_blackburn@pobox.com ** ** You can use it any way you like as long as you don't try to sell it. ** **
www.eeworm.com/read/449504/7502478

m dif.m

function [D]=dif(d,n); % PURPOSE: Generate the difference operator in matrix form % ------------------------------------------------------------ % SYNTAX: D=dif(d,n); % ---------------------------
www.eeworm.com/read/449133/7517901

m driver_ex2.m

clear all x0 = [10; 10; 10]; tolf = 1.e-10; tolx = 1.e-10; maxit = 100; % Newton's method [x, ithist, iflag] = newtnd( 'ex2', x0, tolf, tolx, maxit ); fprintf('\n Newton
www.eeworm.com/read/449133/7517903

m driver.m

clear all x0 = [1.5; 2]; tolf = 1.e-10; tolx = 1.e-10; maxit = 100; % Newton's metjod [x, ithist, iflag] = newtnd( 'ex1', x0, tolf, tolx, maxit ); fprintf('\n Newton''s Metho