Good afternoon,
In studying a user written command, and in the .ado file I see a call to a Mata function, something like
but there is no actual code of the function. This is different from the Mata examples that I read online say here
https://blog.stata.com/2015/12/29/pr...nd-using-mata/
In the examples on the Statablog the Mata code is always seen.
So how does Stata know what the Mata functionname() does? What is the process to precompile this code?
Also, how does the programmer and Stata check that there is no name conflict and there is no other Mata function with the name functionname()?
In studying a user written command, and in the .ado file I see a call to a Mata function, something like
Code:
mata: functionname(arguments)
https://blog.stata.com/2015/12/29/pr...nd-using-mata/
In the examples on the Statablog the Mata code is always seen.
So how does Stata know what the Mata functionname() does? What is the process to precompile this code?
Also, how does the programmer and Stata check that there is no name conflict and there is no other Mata function with the name functionname()?
Comment