Skip to content

Commit

Permalink
docs: fix function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Mar 27, 2024
1 parent 378c108 commit 7d5eb79
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/node_modules/@stdlib/blas/base/ccopy/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
> var z = y.get( 0 );
> var re = {{alias:@stdlib/complex/realf}}( z )
1.0
> var im = {{alias:@stdlib/complex/imag}}( z )
> var im = {{alias:@stdlib/complex/imagf}}( z )
2.0

// Advanced indexing:
Expand All @@ -52,7 +52,7 @@
> z = y.get( 0 );
> re = {{alias:@stdlib/complex/realf}}( z )
5.0
> im = {{alias:@stdlib/complex/imag}}( z )
> im = {{alias:@stdlib/complex/imagf}}( z )
6.0

// Using typed array views:
Expand All @@ -64,7 +64,7 @@
> z = y0.get( 2 );
> re = {{alias:@stdlib/complex/realf}}( z )
7.0
> im = {{alias:@stdlib/complex/imag}}( z )
> im = {{alias:@stdlib/complex/imagf}}( z )
8.0


Expand Down Expand Up @@ -114,7 +114,7 @@
> var z = y.get( 0 );
> var re = {{alias:@stdlib/complex/realf}}( z )
1.0
> var im = {{alias:@stdlib/complex/imag}}( z )
> var im = {{alias:@stdlib/complex/imagf}}( z )
2.0

// Advanced indexing:
Expand All @@ -124,7 +124,7 @@
> z = y.get( y.length-1 );
> re = {{alias:@stdlib/complex/realf}}( z )
3.0
> im = {{alias:@stdlib/complex/imag}}( z )
> im = {{alias:@stdlib/complex/imagf}}( z )
4.0

See Also
Expand Down

0 comments on commit 7d5eb79

Please sign in to comment.