Skip to content

Commit 6262b1d

Browse files
authored
Update README.md
1 parent 86b64ed commit 6262b1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function | type | Description
1616
`primes_mask(lo,hi)` | `logical(LP)` | Logical mask ranged `(1:hi-lo+1)` flagging the prime numbers in the range from `lo` to `hi`.
1717
`next_prime(n)` | `integer(IP)` | Returns the first prime number `p_i > n`
1818
`next_prime(n,i)` | `integer(IP)` | Returns the $i$-th ($i \ge 1$) prime number larger than $n$.
19-
`prime_factors(n,f)` | `integer(IP)` | Returns all prime factors, and their multiplicities, of an integer.:
19+
`prime_factors(n,f)` | `integer(IP)` | Returns all prime factors, and their multiplicities, of an integer. for example, $90=2\cdot3^2\cdot5$. `prime_factors(90,f)` returns `f(:,1) = [2,1]`, `f(:,2) = [3,2]`, `f(:,3) = [5,1]`.
2020

2121
Building, using
2222
===============

0 commit comments

Comments
 (0)