Daniel Skoog

Daniel Skoog

1766 Reputation

22 Badges

14 years, 22 days

MaplePrimes Activity


These are answers submitted by Daniel Skoog

I think that the issue here is actually a collision between the MTM:-solve command and the top-level solve command. I was able to reproduce this issue by entering in:

with(MTM):
5*x - 3 = 19

Then right-clicking on the 5*x-3=19 expression and choosing Solve from the Solve menu. The problem here is that the context menu code calls:

MTM:-solve( {5*x-3=19} );

which errors out, whereas it should call:

:-solve( {5*x-19} );

which would return the intended solution.

One quick workaround for this is then to not load the MTM package before you use the context menu operation.

I'll file an internal report on this to see if we can improve this.

The writeto command writes output from any subsequent run commands, however the results of running showstat aren't strictly speaking output.

So instead, you can use the print command to print out your procedure. If you are interested in printing the body of any of Maple's library procedures, you will need to adjust the interface setting for verboseproc to 2:

interface( verboseproc = 2 ):

You can print out the results to your file as follows:

MyProc := ( ) -> "Hello World";
writeto( "MyFile.txt" );
print( MyProc );

Also remember if you want to stop writing to the file and write to Maple again, you can use:

writeto( terminal );

Hope that helps.

@Christopher2222 : Unless I'm missing something, if you are looking to collect data with "attributes" (meta-information), then a DataFrame might be another alternative. DataFrames store meta-data as column and row names and can also handle specifying a datatype for each column of information. Moreover, they print in a table layout (similar to matrices). For example:

CarInfo := DataFrame(<<Honda, Honda, Honda>|<green,red,blue>|<undefined,Civic,CRV>|<2008,2004,float(undefined)>|<undefined,undefined,`2WD`>>, columns = <Make, Color, Model, Year, `2/4WD`>);

CarInfo[1,Model] := Accord; #Add in the missing information
CarInfo;

The resulting DataFrame would look like:

Here are some more details on connectivity for Maple and Excel: https://www.maplesoft.com/products/maple/features/ExcelConnectivity.aspx 

Maple uses the default worksheet styleset for documents unless you have specifed a custom style set in the style set dialog.

Now that said, the steps that you take to set your custom style set are correct as mentioned ( select a custom style set as your "User-defined Style Set" in the Style Sets dialogue ), however the other issue that you are seeing, namely that Maple always uses italic for math is in fact a bug. There is unfortunately no workaround for this (as you have already discovered by editing the xml). Hopefully we can get around to fixing it sometime soon.

To answer another question, the default style set that Maple uses for both its documents and help pages can be found in the %MAPLEINSTALLDIR/data/stylesets/ directory.

The try statement is used for exception handling, for example:

try
    error;
catch:
    print("Error occurred"):
end try:

If you have a network license, I believe that there are (for cost) tools available from Flexera (the maker of LMTools, Maple's license manager) for reporting on license usage. Otherwise, you can also have your system adminstrator manually go through your lmgrd logs.

If you are looking to retrieve the document meta-data, try the DocumentTools:-GetDocumentProperty command. 

If you want to get the document properties for the document you are currently in, use:

DocumentTools:-GetDocumentProperty(all)

Just in case anyone else is interested, you can set document properties in a couple of ways:

If you have a document open, you can go to File - Document Properties.

If you want to set properties programmatically, you can use the DocumentTools:-SetDocumentProperty command.

Have you tried using the Worksheet:-DisplayFile command? This open an existing Maple worksheet in a new window.

If this question pertains to clearing input and output in a command-line session of Maple without performing a restart, you could use:

In Unix:

system( clear );

In Windows:

system( cls );

If you are talking about clearing the input and output without a restart in a Maple worksheet, the only thing I believe that you can do is to select all the text in your session and then delete it.

You're just missing a colon in the P3 line. As it is, you are entering an expression 'P3 = 3/7*1000 W'. When you attempt to apply units formatting to this, it tries to format the entire expression, resulting in an error.

 

If you instead use: P3 := 3/7*1000 W, Units formatting will only attempt to format the right hand side, '3/7*1000 W'.

After testing your code and data, I can see Maple hitting a couple of snags with import and joining of TimeSeries data. For reasons that I'm not yet clear on, the import of your data from the Excel xlsx comes in as an integer value that Maple doesn't play well with. To get around this, I split your data into two separate csv files and read those in.

After doing so using ImportMatrix, I didn't have any immediate success merging the TimeSeries data, so I instead tried using a DataFrame, which is slightly more agnostic to incoming data. I usually use DataFrames whenever I have row or column labels, which in this case are the dates and column headers respectively. Storing the data in a DataFrame also makes it much easier to apply any relevant Statistics commands to the data. You might still be able to import your data using ExcelTools:-Import and other techniques, but this seemed like the quickest approach to me.

By default, the Import command uses a DataFrame for storage:

PMEAS_ROUGH := Import( "this:///PM.csv" );
QGAS_ROUGH  := Import( "this:///QG.csv" );

The Append command merges the two DataFrames, however the row labels are not sorted.

DF := Append( PMEAS_ROUGH, QGAS_ROUGH );

Reorder the DataFrame, sorting on the row labels:

DF := DF[ sort(RowLabels(DF)), ..];

Optional: Convert the resulting DataFrame to a TimeSeries:

TS := TimeSeriesAnalysis:-TimeSeries( Matrix( < < RowLabels( DF ) > | convert( DF, Matrix )> ), headers = 1 , dates = 1);

 

I've added an example worksheet (in a zipped Workbook with attached data csv files) - DataFrame_Example.zip

Hope this helps.

Hi Erik,

I've played around with this a bit and do think that you're correct in that there's a slight gap in the GUI interaction model: if someone is using the GUI interface (i.e. menus) there is no interactive way to "Import" data that is stored in a Workbook. While @tomleslie's programmatic suggestion is probably the only way to accomplish this at the moment, I agree that we could add a step to the "Data Import Assistant" that allows a user to "import" from their own Workbook or the file system (leaving aside the issue of if should still be called import if it's already stored inside of the containing document).

 

A decent parallel here is how the Workbook treats inserting images. If there is an image present in the Workbook explorer tree, then going to Insert -> Image -> From Attachment brings up a dialog that allows a user to select attachments from the Workbook tree. I'd imagine this is more in line with your expectations for the file selection dialogue box for the Data Import Assistant as well. I'll add a task for us to see about adding this for data files (and any other attachments that we can think of).

Thanks.
Daniel

It is possible to activate Maple on your new computer, but you will first need to have your activation code reset. To do so, send Maple's customer service team an email at custservice@maplesoft.com and let them know that you need to reinstall on your new computer.

Here's one way using an ifelse statement:

a := n -> ifelse( type(n,odd), 1/n, -1/n^2 );

This could also be done as a piecewise function:

a := n -> piecewise( type(n,odd), 1/n, -1/n^2 );
seq(a(i),i=1..5);

Returns:

1, -1/4, 1/3, -1/16, 1/5

You might also want to be careful at n=0, so you could also add another clause to the piecewise function:

a := n -> piecewise( n=0, 0, type(n,odd), 1/n, -1/n^2 );

 

 

3 4 5 6 7 8 9 Page 5 of 12