Matlab: factorials without for loops or colon

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 3K views
koryargonic
Messages
3
Reaction score
0
The Problem: Write a function that finds the factorial of a positive integer without using for or while loops, the factorial function, or the : range operator.

Honestly, I don't really know how to start with this one. If I were able to use a for loop it would be easy, and I don't see how I can do this with conditionals. Any ideas/hints?
 
Physics news on Phys.org
Think recursion.
 
Ooh, thanks. I got it.