MATLAB: How to multiple successive numbers

mutliplication of successive numbers

Would you please show how to multiply the number from 70 to 80 successively without entering them by one by?

Best Answer

You can use prod()
prod(70:80)