Re: MAPLE print content of myfile.m to maple standard output

From: Joe Riel (joer_at_k-online.com)
Date: 11/09/04

  • Next message: Darren E. Mason: "Re: Mathematica and Matlab. Some thoughts"
    Date: Tue, 09 Nov 2004 15:32:53 GMT
    
    

    steineswz@hotmail.com (stijn) writes:

    > hello, can anyone tell me what to do? I created a file myfile.m a
    > while ago where i defined some functions. now i forgot how i named
    > them, so i want maple to print the content of myfile.m to the standard
    > maple output.
    >
    > i tried
    >> interface(echo=2);
    >> read("myfile.m");

    Try the following

    restart;
    origprocs := {anames(procedure)}:
    read("myfile.m"):
    {anames(procedure)} minus origprocs;

    Another possibility, with Maple 9, is to use
    LibraryTools:-BuildFromDirectory to put the contents of the m-file
    into a repository and then view it using LibraryTools:-Browse (after
    setting libname to include to the repository.

    Joe


  • Next message: Darren E. Mason: "Re: Mathematica and Matlab. Some thoughts"

    Relevant Pages