代码搜索:Math
找到约 10,000 项符合「Math」的源代码
代码结果 10,000
www.eeworm.com/read/174254/9599803
c showfmod.c
#include
#include
void main (void)
{
double numerator = 10.0;
double denominator = 3.0;
printf("fmod(10, 3) is %f\n", fmod(numerator,
denominator));
}
www.eeworm.com/read/174254/9599806
c showfabs.c
#include
#include
void main (void)
{
float value;
for (value = -1.0; value
www.eeworm.com/read/174254/9599809
c show_cos.c
#include
#include
void main (void)
{
printf("cosine of pi/2 is %6.4f\n", cos(3.14159/2.0));
printf("cosine of pi is %6.4f\n", cos(3.14159));
}
www.eeworm.com/read/370453/9600414
h c1.h
/* c1.h (程序名) */
#include
#include
#include /* malloc()等 */
#include /* INT_MAX等 */
#include /* EOF(=^Z或F6),NULL */
#include /* a
www.eeworm.com/read/174160/9605590
readme
###############
Description:
MATLAB routines to simulate a branching Brownian motion in the plain
and make an animation. The detailed documentation can be found in
http://www.math.uu.se/resear
www.eeworm.com/read/174160/9605642
readme
###############
Description:
Small routines for MATLAB to generate random numbers from various
handy distributions: binomial, geometric, Pareto etc.
The detailed documentation can be found in
www.eeworm.com/read/174160/9605715
readme
###############
Description:
MATLAB routine to simulate and vizualize a random network
by the method suggested by Waxman (1988). The detailed
documentation can be found in
http://www.math.uu
www.eeworm.com/read/174062/9610030
c ch2_2.c
/*CH2_2*/
#include
#include
void main()
{
double s;
double a;
scanf("%f",&a);
s=cos(a);
printf("%f\n",s);
}