Function reference · Calculus

C

Computes the normalized Fresnel cosine integral.

C(x) represents integral(cos(pi*t^2/2), t, 0, x). Numeric real arguments are evaluated numerically; symbolic arguments remain as C(x).

Examples

These examples use Nerdamer Notation.

Evaluate the normalized Fresnel cosine integral at zero.

C(0)
// → 0

Keep a symbolic argument symbolic.

C(x)
// → C(x)

Interfaces

The same operation is available through the interfaces below.

Nerdamer Notation · Direct API

Nerdamer Notation

Use this form inside input passed to nerdamer(...).

C(x)

Parameters

  • x — Upper integration limit.

Direct JavaScript / TypeScript API

Import the operation directly from its package entry point.

import { C } from 'nerdamer/calculus';

Browse nerdamer/calculus

← Back to Reference