# @stdlib/complex-float32-base-add

> Add two single-precision complex floating-point numbers.

Latest version **0.2.1** (published 2026-02-08) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install @stdlib/complex-float32-base-add
pnpm add @stdlib/complex-float32-base-add
yarn add @stdlib/complex-float32-base-add
bun add @stdlib/complex-float32-base-add
```

## Health

**Score 55/100 (C)** — status: stable.

Positive: has types; no vulnerabilities; high maintenance score.

Warnings: low downloads; no esm support; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.2.1 |
| Published | 2026-02-08 |
| First published | 2024-07-28 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >=0.10.0 |
| Dependencies | 8 |
| Unpacked size | 49.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | The Stdlib Authors |
| Maintainers | stdlib-bot, kgryte, planeshifter, rreusser |
| Keywords | stdlib, stdmath, mathematics, math, add, cadd, caddf, addition, sum, arithmetic, complex, cmplx, number |

## Links

- npm: https://www.npmjs.com/package/@stdlib/complex-float32-base-add
- Repository: https://github.com/stdlib-js/complex-float32-base-add
- Homepage: https://stdlib.io
- Issues: https://github.com/stdlib-js/stdlib/issues
- Funding: https://opencollective.com/stdlib
- npm.io page: https://npm.io/package/@stdlib/complex-float32-base-add

## Dependencies (8)

- [@stdlib/complex-float32-ctor](https://npm.io/package/@stdlib/complex-float32-ctor.md) ^0.1.0
- [@stdlib/complex-float32-imag](https://npm.io/package/@stdlib/complex-float32-imag.md) ^0.1.2
- [@stdlib/complex-float32-real](https://npm.io/package/@stdlib/complex-float32-real.md) ^0.1.2
- [@stdlib/complex-float32-reim](https://npm.io/package/@stdlib/complex-float32-reim.md) ^0.1.3
- [@stdlib/math-base-napi-binary](https://npm.io/package/@stdlib/math-base-napi-binary.md) ^0.3.3
- [@stdlib/utils-library-manifest](https://npm.io/package/@stdlib/utils-library-manifest.md) ^0.2.4
- [@stdlib/number-float64-base-to-float32](https://npm.io/package/@stdlib/number-float64-base-to-float32.md) ^0.2.2
- [@stdlib/utils-define-nonenumerable-read-only-property](https://npm.io/package/@stdlib/utils-define-nonenumerable-read-only-property.md) ^0.2.3

## Alternatives

- [random-seedable](https://npm.io/package/random-seedable.md) — 27.9K weekly downloads
- [n2words](https://npm.io/package/n2words.md) — 22.2K weekly downloads
- [@stdlib/math-base-special-factorialln](https://npm.io/package/@stdlib/math-base-special-factorialln.md) — 5.7K weekly downloads
- [@stdlib/math-base-special-abs2](https://npm.io/package/@stdlib/math-base-special-abs2.md) — 1.7K weekly downloads
- [commons-math-interpolation](https://npm.io/package/commons-math-interpolation.md) — 1.4K weekly downloads

## Recent versions

- 0.2.1 (latest) — 2026-02-08
- 0.2.0 — 2026-01-30
- 0.1.0 — 2024-07-28

## README

<!--

@license Apache-2.0

Copyright (c) 2021 The Stdlib Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

-->


<details>
  <summary>
    About stdlib...
  </summary>
  <p>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.</p>
  <p>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.</p>
  <p>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.</p>
  <p>To join us in bringing numerical computing to the web, get started by checking us out on <a href="https://github.com/stdlib-js/stdlib">GitHub</a>, and please consider <a href="https://opencollective.com/stdlib">financially supporting stdlib</a>. We greatly appreciate your continued support!</p>
</details>

# add

[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->

> Add two single-precision complex floating-point numbers.

<section class="intro">

</section>

<!-- /.intro -->

<section class="installation">

## Installation

```bash
npm install @stdlib/complex-float32-base-add
```

</section>

<section class="usage">

## Usage

```javascript
var add = require( '@stdlib/complex-float32-base-add' );
```

#### add( z1, z2 )

Adds two single-precision complex floating-point numbers.

```javascript
var Complex64 = require( '@stdlib/complex-float32-ctor' );

var z = new Complex64( -1.5, 2.5 );

var v = add( z, z );
// returns <Complex64>[ -3.0, 5.0 ]
```

#### add.assign( re1, im1, re2, im2, out, strideOut, offsetOut )

Adds two single-precision complex floating-point numbers and assigns results to a provided output array.

```javascript
var Float32Array = require( '@stdlib/array-float32' );

var out = new Float32Array( 2 );
var v = add.assign( 5.0, 3.0, -2.0, 1.0, out, 1, 0 );
// returns <Float32Array>[ 3.0, 4.0 ]

var bool = ( out === v );
// returns true
```

The function supports the following parameters:

-   **re1**: real component of the first complex number.
-   **im1**: imaginary component of the first complex number.
-   **re2**: real component of the second complex number.
-   **im2**: imaginary component of the second complex number.
-   **out**: output array.
-   **strideOut**: stride length for `out`.
-   **offsetOut**: starting index for `out`.

#### add.strided( z1, sz1, oz1, z2, sz2, oz2, out, so, oo )

Adds two single-precision complex floating-point numbers stored in real-valued strided array views and assigns results to a provided strided output array.

```javascript
var Float32Array = require( '@stdlib/array-float32' );

var z1 = new Float32Array( [ 5.0, 3.0 ] );
var z2 = new Float32Array( [ -2.0, 1.0 ] );
var out = new Float32Array( 2 );

var v = add.strided( z1, 1, 0, z2, 1, 0, out, 1, 0 );
// returns <Float32Array>[ 3.0, 4.0 ]

var bool = ( out === v );
// returns true
```

The function supports the following parameters:

-   **z1**: first complex number strided array view.
-   **sz1**: stride length for `z1`.
-   **oz1**: starting index for `z1`.
-   **z2**: second complex number strided array view.
-   **sz2**: stride length for `z2`.
-   **oz2**: starting index for `z2`.
-   **out**: output array.
-   **so**: stride length for `out`.
-   **oo**: starting index for `out`.

</section>

<!-- /.usage -->

<section class="examples">

## Examples

<!-- eslint no-undef: "error" -->

```javascript
var Complex64Array = require( '@stdlib/array-complex64' );
var discreteUniform = require( '@stdlib/random-array-discrete-uniform' );
var logEachMap = require( '@stdlib/console-log-each-map' );
var add = require( '@stdlib/complex-float32-base-add' );

// Generate arrays of random values:
var z1 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
var z2 = new Complex64Array( discreteUniform( 200, -50, 50 ) );

// Perform element-wise addition:
logEachMap( '(%s) + (%s) = %s', z1, z2, add );
```

</section>

<!-- /.examples -->

<!-- C interface documentation. -->

* * *

<section class="c">

## C APIs

<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->

<section class="intro">

</section>

<!-- /.intro -->

<!-- C usage documentation. -->

<section class="usage">

### Usage

```c
#include "stdlib/complex/float32/base/add.h"
```

#### stdlib_base_complex64_add( z1, z2 )

Adds two single-precision complex floating-point numbers.

```c
#include "stdlib/complex/float32/ctor.h"
#include "stdlib/complex/float32/real.h"
#include "stdlib/complex/float32/imag.h"

stdlib_complex64_t z = stdlib_complex64( 3.0f, -2.0f );

stdlib_complex64_t out = stdlib_base_complex64_add( z, z );

float re = stdlib_complex64_real( out );
// returns 6.0f

float im = stdlib_complex64_imag( out );
// returns -4.0f
```

The function accepts the following arguments:

-   **z1**: `[in] stdlib_complex64_t` input value.
-   **z2**: `[in] stdlib_complex64_t` input value.

```c
stdlib_complex64_t stdlib_base_complex64_add( const stdlib_complex64_t z1, const stdlib_complex64_t z2 );
```

</section>

<!-- /.usage -->

<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="notes">

</section>

<!-- /.notes -->

<!-- C API usage examples. -->

<section class="examples">

### Examples

```c
#include "stdlib/complex/float32/base/add.h"
#include "stdlib/complex/float32/ctor.h"
#include "stdlib/complex/float32/reim.h"
#include <stdio.h>

int main( void ) {
    const stdlib_complex64_t x[] = {
        stdlib_complex64( 3.14f, 1.5f ),
        stdlib_complex64( -3.14f, 1.5f ),
        stdlib_complex64( 0.0f, -0.0f ),
        stdlib_complex64( 0.0f/0.0f, 0.0f/0.0f )
    };

    stdlib_complex64_t v;
    stdlib_complex64_t y;
    float re;
    float im;
    int i;
    for ( i = 0; i < 4; i++ ) {
        v = x[ i ];
        stdlib_complex64_reim( v, &re, &im );
        printf( "z = %f + %fi\n", re, im );

        y = stdlib_base_complex64_add( v, v );
        stdlib_complex64_reim( y, &re, &im );
        printf( "add(z, z) = %f + %fi\n", re, im );
    }
}
```

</section>

<!-- /.examples -->

</section>

<!-- /.c -->

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

* * *

## See Also

-   <span class="package-name">[`@stdlib/complex-float64/base/add`][@stdlib/complex/float64/base/add]</span><span class="delimiter">: </span><span class="description">add two double-precision complex floating-point numbers.</span>
-   <span class="package-name">[`@stdlib/complex-float32/base/mul`][@stdlib/complex/float32/base/mul]</span><span class="delimiter">: </span><span class="description">multiply two single-precision complex floating-point numbers.</span>
-   <span class="package-name">[`@stdlib/complex-float32/base/sub`][@stdlib/complex/float32/base/sub]</span><span class="delimiter">: </span><span class="description">subtract two single-precision complex floating-point numbers.</span>

</section>

<!-- /.related -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->


<section class="main-repo" >

* * *

## Notice

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]

---

## License

See [LICENSE][stdlib-license].


## Copyright

Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].

</section>

<!-- /.stdlib -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="links">

[npm-image]: http://img.shields.io/npm/v/@stdlib/complex-float32-base-add.svg
[npm-url]: https://npmjs.org/package/@stdlib/complex-float32-base-add

[test-image]: https://github.com/stdlib-js/complex-float32-base-add/actions/workflows/test.yml/badge.svg?branch=v0.2.1
[test-url]: https://github.com/stdlib-js/complex-float32-base-add/actions/workflows/test.yml?query=branch:v0.2.1

[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/complex-float32-base-add/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/complex-float32-base-add?branch=main

<!--

[dependencies-image]: https://img.shields.io/david/stdlib-js/complex-float32-base-add.svg
[dependencies-url]: https://david-dm.org/stdlib-js/complex-float32-base-add/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/complex-float32-base-add/tree/deno
[deno-readme]: https://github.com/stdlib-js/complex-float32-base-add/blob/deno/README.md
[umd-url]: https://github.com/stdlib-js/complex-float32-base-add/tree/umd
[umd-readme]: https://github.com/stdlib-js/complex-float32-base-add/blob/umd/README.md
[esm-url]: https://github.com/stdlib-js/complex-float32-base-add/tree/esm
[esm-readme]: https://github.com/stdlib-js/complex-float32-base-add/blob/esm/README.md
[branches-url]: https://github.com/stdlib-js/complex-float32-base-add/blob/main/branches.md

[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/complex-float32-base-add/main/LICENSE

<!-- <related-links> -->

[@stdlib/complex/float64/base/add]: https://www.npmjs.com/package/@stdlib/complex-float64-base-add

[@stdlib/complex/float32/base/mul]: https://www.npmjs.com/package/@stdlib/complex-float32-base-mul

[@stdlib/complex/float32/base/sub]: https://www.npmjs.com/package/@stdlib/complex-float32-base-sub

<!-- </related-links> -->

</section>

<!-- /.links -->

---
_Source: https://npm.io/package/@stdlib/complex-float32-base-add · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
