LAPACK routine to divide two double-precision complex floating-point numbers in real arithmetic.
npm install @stdlib/lapack-base-dladivWe 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 on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
About stdlib...
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]
> Divide two double-precision complex floating-point numbers in real arithmetic.
``bash`
npm install @stdlib/lapack-base-dladiv
`javascript`
var dladiv = require( '@stdlib/lapack-base-dladiv' );
#### dladiv( a, b, c, d, P, Q )
Divides two double-precision complex floating-point numbers in real arithmetic.
`javascript
var Float64Array = require( '@stdlib/array-float64' );
var P = new Float64Array( 1 );
var Q = new Float64Array( 1 );
dladiv( -13.0, -1.0, -2.0, 1.0, P, Q );
// P =>
// Q =>
`
The function has the following parameters:
- a: real component of numerator.
- b: imaginary component of numerator.
- c: real component of denominator.
- d: imaginary component of denominator.
- P: [Float64Array][mdn-float64array] containing a single element which is overwritten by the real part of the quotient.Float64Array
- Q: [][mdn-float64array] containing a single element which is overwritten by the imaginary part of the quotient.
#### dladiv.ndarray( a, b, c, d, P, offsetP, Q, offsetQ )
Divides two double-precision complex floating-point numbers in real arithmetic using alternative indexing semantics.
`javascript
var Float64Array = require( '@stdlib/array-float64' );
var P = new Float64Array( 1 );
var Q = new Float64Array( 1 );
dladiv.ndarray( -13.0, -1.0, -2.0, 1.0, P, 0, Q, 0 );
// P =>
// Q =>
`
The function has the following parameters:
- a: real component of numerator.
- b: imaginary component of numerator.
- c: real component of denominator.
- d: imaginary component of denominator.
- P: [Float64Array][mdn-float64array] containing an element which is overwritten by the real part of the quotient.P
- offsetP: index of the element in .Float64Array
- Q: [][mdn-float64array] containing an element which is overwritten by the imaginary part of the quotient.Q
- offsetQ: index of the element in .
While [typed array][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example,
`javascript
var Float64Array = require( '@stdlib/array-float64' );
var P = new Float64Array( [ 0.0, 0.0, 0.0 ] );
var Q = new Float64Array( [ 0.0, 0.0, 0.0 ] );
dladiv.ndarray( 2.0, 1.0, 3.0, 4.0, P, 1, Q, 2 );
// P =>
// Q =>
`
- dladiv() corresponds to the [LAPACK][LAPACK] function [dladiv][lapack-dladiv].
`javascript
var Float64Array = require( '@stdlib/array-float64' );
var dladiv = require( '@stdlib/lapack-base-dladiv' );
var P = new Float64Array( 1 );
var Q = new Float64Array( 1 );
dladiv( 2.0, 1.0, 3.0, 4.0, P, Q );
console.log( '(2+i)/(3+4i) =', P[ 0 ], '+', Q[ 0 ], 'i' );
`
*
`c`
TODO
#### TODO
TODO.
`c`
TODO
TODO
`c`
TODO
`c`
TODO
*
This package is part of [stdlib][stdlib], 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 develop [stdlib][stdlib], see the main project [repository][stdlib].
#### Community
[![Chat][chat-image]][chat-url]
---
See [LICENSE][stdlib-license].
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/lapack-base-dladiv.svg
[npm-url]: https://npmjs.org/package/@stdlib/lapack-base-dladiv
[test-image]: https://github.com/stdlib-js/lapack-base-dladiv/actions/workflows/test.yml/badge.svg?branch=v0.1.1
[test-url]: https://github.com/stdlib-js/lapack-base-dladiv/actions/workflows/test.yml?query=branch:v0.1.1
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/lapack-base-dladiv/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/lapack-base-dladiv?branch=main
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
[chat-url]: https://stdlib.zulipchat.com
[stdlib]: https://github.com/stdlib-js/stdlib
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
[umd]: https://github.com/umdjs/umd
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
[deno-url]: https://github.com/stdlib-js/lapack-base-dladiv/tree/deno
[deno-readme]: https://github.com/stdlib-js/lapack-base-dladiv/blob/deno/README.md
[umd-url]: https://github.com/stdlib-js/lapack-base-dladiv/tree/umd
[umd-readme]: https://github.com/stdlib-js/lapack-base-dladiv/blob/umd/README.md
[esm-url]: https://github.com/stdlib-js/lapack-base-dladiv/tree/esm
[esm-readme]: https://github.com/stdlib-js/lapack-base-dladiv/blob/esm/README.md
[branches-url]: https://github.com/stdlib-js/lapack-base-dladiv/blob/main/branches.md
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/lapack-base-dladiv/main/LICENSE
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
[lapack-dladiv]: https://www.netlib.org/lapack/explore-html/d5/db7/group__ladiv_gacbc97eb1922a833ffe257e1731bb0aaa.html
[mdn-float64array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array
[lapack]: https://www.netlib.org/lapack/explore-html/