Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork0
Convert each element in a double-precision floating-point strided array from degrees to radians.
License
stdlib-js/math-strided-special-ddeg2rad
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About stdlib...
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out onGitHub, and please considerfinancially supporting stdlib. We greatly appreciate your continued support!
Convert each element in a double-precision floating-point strided array from degrees to radians.
npm install @stdlib/math-strided-special-ddeg2rad
Alternatively,
- To load the package in a website via a
script
tag without installation and bundlers, use theES Module available on theesm
branch (seeREADME). - If you are using Deno, visit the
deno
branch (seeREADME for usage intructions). - For use in Observable, or in browser/node environments, use theUniversal Module Definition (UMD) build available on the
umd
branch (seeREADME).
Thebranches.md file summarizes the available branches and displays a diagram illustrating their relationships.
To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
varddeg2rad=require('@stdlib/math-strided-special-ddeg2rad');
Converts each element in a double-precision floating-point strided arrayx
from degrees to radians and assigns the results to elements in a double-precision floating-point strided arrayy
.
varFloat64Array=require('@stdlib/array-float64');varx=newFloat64Array([0.0,30.0,45.0,60.0,90.0]);// Perform operation in-place:ddeg2rad(x.length,x,1,x,1);// x => <Float64Array>[ 0.0, ~0.524, ~0.785, ~1.047, ~1.571 ]
The function accepts the following arguments:
- N: number of indexed elements.
- x: input
Float64Array
. - strideX: index increment for
x
. - y: output
Float64Array
. - strideY: index increment for
y
.
TheN
andstride
parameters determine which elements inx
andy
are accessed at runtime. For example, to index every other value inx
and to index the firstN
elements ofy
in reverse order,
varFloat64Array=require('@stdlib/array-float64');varx=newFloat64Array([0.0,30.0,45.0,60.0,90.0,120.0]);vary=newFloat64Array([0.0,0.0,0.0,0.0,0.0,0.0]);ddeg2rad(3,x,2,y,-1);// y => <Float64Array>[ ~1.571, ~0.785, 0.0, 0.0, 0.0, 0.0 ]
Note that indexing is relative to the first index. To introduce an offset, usetyped array
views.
varFloat64Array=require('@stdlib/array-float64');// Initial arrays...varx0=newFloat64Array([0.0,30.0,45.0,60.0,90.0,120.0]);vary0=newFloat64Array([0.0,0.0,0.0,0.0,0.0,0.0]);// Create offset views...varx1=newFloat64Array(x0.buffer,x0.BYTES_PER_ELEMENT*1);// start at 2nd elementvary1=newFloat64Array(y0.buffer,y0.BYTES_PER_ELEMENT*3);// start at 4th elementddeg2rad(3,x1,-2,y1,1);// y0 => <Float64Array>[ 0.0, 0.0, 0.0, ~2.094, ~1.047, ~0.524 ]
Converts each element in a double-precision floating-point strided arrayx
from degrees to radians and assigns the results to elements in a double-precision floating-point strided arrayy
using alternative indexing semantics.
varFloat64Array=require('@stdlib/array-float64');varx=newFloat64Array([0.0,30.0,45.0,60.0,90.0]);vary=newFloat64Array([0.0,0.0,0.0,0.0,0.0]);ddeg2rad.ndarray(x.length,x,1,0,y,1,0);// y => <Float64Array>[ 0.0, ~0.524, ~0.785, ~1.047, ~1.571 ]
The function accepts the following additional arguments:
- offsetX: starting index for
x
. - offsetY: starting index for
y
.
Whiletyped array
views mandate a view offset based on the underlyingbuffer
, theoffsetX
andoffsetY
parameters support indexing semantics based on starting indices. For example, to index every other value inx
starting from the second value and to index the lastN
elements iny
,
varFloat64Array=require('@stdlib/array-float64');varx=newFloat64Array([0.0,30.0,45.0,60.0,90.0,120.0]);vary=newFloat64Array([0.0,0.0,0.0,0.0,0.0,0.0]);ddeg2rad.ndarray(3,x,2,1,y,-1,y.length-1);// y => <Float64Array>[ 0.0, 0.0, 0.0, ~2.094, ~1.047, ~0.524 ]
varuniform=require('@stdlib/random-base-uniform');varFloat64Array=require('@stdlib/array-float64');varddeg2rad=require('@stdlib/math-strided-special-ddeg2rad');varx=newFloat64Array(10);vary=newFloat64Array(10);vari;for(i=0;i<x.length;i++){x[i]=uniform(-180.0,180.0);}console.log(x);console.log(y);ddeg2rad.ndarray(x.length,x,1,0,y,-1,y.length-1);console.log(y);
#include"stdlib/math/strided/special/ddeg2rad.h"
Converts each element in a double-precision floating-point strided arrayx
from degrees to radians and assigns the results to elements in a double-precision floating-point strided arrayy
.
#include<stdint.h>constdoubleX[]= {0.0,30.0,45.0,60.0,90.0,120.0,150.0,180.0 };doubleY[]= {0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 };constint64_tN=4;stdlib_strided_ddeg2rad(N,X,2,Y,2 );
The function accepts the following arguments:
- N:
[in] int64_t
number of indexed elements. - X:
[in] double*
input array. - strideX:
[in] int64_t
index increment forX
. - Y:
[out] double*
output array. - strideY:
[in] int64_t
index increment forY
.
voidstdlib_strided_ddeg2rad(constint64_tN,constdouble*X,constint64_tstrideX,double*Y,constint64_tstrideY );
#include"stdlib/math/strided/special/ddeg2rad.h"#include<stdint.h>#include<stdio.h>intmain(void ) {// Create an input strided array:constdoubleX[]= {0.0,30.0,45.0,60.0,90.0,120.0,150.0,180.0 };// Create an output strided array:doubleY[]= {0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 };// Specify the number of elements:constint64_tN=4;// Specify the stride lengths:constint64_tstrideX=2;constint64_tstrideY=2;// Compute the results:stdlib_strided_ddeg2rad(N,X,strideX,Y,strideY );// Print the results:for (inti=0;i<8;i++ ) {printf("Y[ %i ] = %lf\n",i,Y[i ] ); }}
@stdlib/math-strided/special/deg2rad
:convert each element in a strided array from degrees to radians.@stdlib/math-strided/special/sdeg2rad
:convert each element in a single-precision floating-point strided array from degrees to radians.
This package is part ofstdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to developstdlib, see the main projectrepository.
SeeLICENSE.
Copyright © 2016-2025. The StdlibAuthors.
About
Convert each element in a double-precision floating-point strided array from degrees to radians.
Topics
Resources
License
Code of conduct
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.