Question: Using Maple to deal with abbreviations with subscript functions

A question about the alias command: Can the abbreviation u[k] of the function call u[k](x, y) be implemented by the alias command, so that the type of u[k] is a function for any integer K?

example:
alias(F[k]=F[k](x));
output:F[k].
whattype(F[k]);
output:function
whattype(F[1]);
output:indexed
I want f[k] to be a function for any integer K. how to implement it? If there are experts to see this question to help answer, will be very grateful!

Please Wait...