Problem 45794. *Prime number check 2 (in construction)
Another way to see if a number is prime is to count the number of factors. For example,
the number 4 has 2 factors, [ 2 4 ] the number 16 has 4 factors, [ 2 4 8 16 ] the number 7 has 1 factor, [ 7 ]
Thus, if a number has only one factor, it is prime. We ignore the factor 1 as it is trivial.
Your function should create a vector containing all the factors of any number x.
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers28
Suggested Problems
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
382 Solvers
-
565 Solvers
-
1367 Solvers
-
Flip the vector from right to left
9424 Solvers
-
Create a vector of n alternating ones and zeros (★★)
112 Solvers
More from this Author52
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!