gistlib
The output of the matlab function power(2,3) can be obtained using the command window or script as follows:
power(2,3)
main.m>> power(2,3) ans = 8 27 chars4 lines
>> power(2,3) ans = 8
This command returns the result of the 2^3 operation, which is equal to 8.
2^3
8
gistlibby LogSnag