I am new to Matlab and would appreciate any help with this problem.
I want to solve for a few Hypergeometric functions, but R2007b version of Matlab doesn't seem to know that there is a hypergeom function. (I will show you the simplest form of the code and the error message that I get)
(in file Untitled2just.m)
clear;
hypergeom([2, 16],[3,1],-7);
ERROR
??? Attempt to execute SCRIPT Hypergeom as a function:
F:\INTERSNHIP at RRI\Matlab\Hypergeom.m
Error in ==> Untitled2just at 2
hypergeom([2, 16],[3,1],-7);
(F:\INTERSNHIP at RRI\Matlab\Hypergeom.m - this is another file that has hypergeom function, and saved with the name Hypergeom.m )
Is there anyway I can get hypergeom function to work on Matlab R2007b version?
Thanks for helping.