File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
lib/node_modules/@stdlib/math/base/special/cosc Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ limitations under the License.
2626
2727The derivative of the normalized [ cardinal sine] [ sinc ] is defined as
2828
29+ <!-- lint disable-->
30+
2931<!-- <equation class="equation" label="eq:cosc" align="center" raw=""\operatorname{cosc}(x) = \begin{cases} \frac{\cos(\pi x)}{x} - \frac{\sin( \pi x)}{\pi x^2} & \textrm{if}\ x \neq 0 \\ 0 & \textrm{if}\ x = 0\end{cases}" alt="Derivative of the normalized cardinal sine."> -->
3032
3133<div class =" equation " align =" center " data-raw-text =" \operatorname{cosc}(x) = \begin{cases} \frac{\cos(\pi x)}{x} - \frac{\sin( \pi x)}{\pi x^2} & ; \textrm{if}\ x \neq 0 \\ 0 & ; \textrm{if}\ x = 0\end{cases} " data-equation =" eq:cosc " >
@@ -35,7 +37,7 @@ The derivative of the normalized [cardinal sine][sinc] is defined as
3537
3638<!-- </equation> -->
3739
38- <!-- </equation> -->
40+ <!-- lint enable -->
3941
4042for any real number ` x ` .
4143
@@ -48,7 +50,7 @@ for any real number `x`.
4850## Usage
4951
5052``` javascript
51- var cosc = require (" @stdlib/math/base/special/cosc" );
53+ var cosc = require (' @stdlib/math/base/special/cosc' );
5254```
5355
5456#### cosc( x )
@@ -80,8 +82,8 @@ v = cosc(NaN);
8082<!-- eslint no-undef: "error" -->
8183
8284``` javascript
83- var linspace = require (" @stdlib/math/utils/linspace" );
84- var cosc = require (" @stdlib/math/base/special/cosc" );
85+ var linspace = require (' @stdlib/math/utils/linspace' );
86+ var cosc = require (' @stdlib/math/base/special/cosc' );
8587
8688var x = linspace (- 5.0 , 5.0 , 100 );
8789var i;
You can’t perform that action at this time.
0 commit comments