TechnicalSupport

Technical Support

645 Reputation

13 Badges

15 years, 133 days
Maplesoft
Waterloo, Ontario, Canada

MaplePrimes Activity


These are answers submitted by TechnicalSupport

Hello @wellsgbw,

Thank you for describing this option on Maple Primes. We see that the option was present in Maple 18 and Maple 2015; however, it appears to have been deprecated in Maple 2016. This may have been because there are a few alternatives to display multiple plots in newer versions (including Maple 2023), the easiest may be to just run a different command in another execution group:

restart

plot(sin(x))

 

plot(sin(10*x))

 

NULL


Download primes-m2023-plot-separate-ex-gr.mw

Another option is the Tabulate command from DocumentTools package:

restart

plot1 := plot(sin(x))

plot2 := plot(sin(10*x))

with(DocumentTools)

Tabulate(`<,>`(plot1, plot2), width = 50)

"Tabulate"

(1)

NULL

 

Download primes-m2023-tabulate-plots.mw

 

 

Let us know if any of these alternatives will work for you in the current version. 

Hi @brian.paul.hanley

Our developers also shared this advice by email:

If it is a memory issue, it may help to increase the memory available to Java.   This can be done, for example, by running:

xmaple -j 2048

The -j option maps directly to Java's -Xmx option which controls the maximum amount of heap memory that the Java process is allowed to consume.   The default is usually 1GB or less.   The -j option is specified in MB, so the above call will allow Java to use 2GB.   Try experimenting with this number or something larger.   Also, make sure the datasize limit (as specified by 'ulimit -d' or 'limit datasize' depending on your shell) is also set high enough for the O/S to allow the process to use this much memory.

If this works, you can then edit the $MAPLE/bin/maple script and modify the script to set JAVAHEAP=2048 and CUSTOMHEAP=1. 

Hello @Nawazish13fpm ,

Thank you for the question. We discussed it with our development team.

Unfortunately, Maple 2022.1 does not support Benders Decomposition technique but we have noted the interest and will consider it for future versions. We don't have the expertise to discuss implementing it in Maple either.

Our apologies for the inconvenience. 

Hi @olawattad,

Does the ?Threads article give you some ideas?

There are already some great suggestions on this thread. One of our developers also had this slight variation of @acer 's answer:

interface(typesetting = extended); with(Typesetting); Settings(typesetdot = true); Suppress(x(t)); a := diff((1/2)*LongExpression*x(t), t); F := convert(a, list, `*`); b := InertForm:-Display(`%*`(op(F)), inert = false)

Typesetting:-mcomplete(Typesetting:-mrow(Typesetting:-mfrac(Typesetting:-mn("1"), Typesetting:-mn("2")), Typesetting:-mo("&sdot;"), Typesetting:-mi("LongExpression"), Typesetting:-mo("&sdot;"), Typesetting:-mover(Typesetting:-mi("x", fontstyle = "normal", Typesetting:-msemantics = "function"), Typesetting:-mo("&period;", bold = "true"), accent = "true")), Typesetting:-_Hold([`%*`(1/2, LongExpression, diff(x(t), t))]))

(1)

 

Download simultaneous-fraction-over-dot-slight-variation.mw

Hello @Srahimi2022 ,

We're sorry to hear about trouble with your Maple trial. 

The error shown has an article about it with some possible solutions, or instructions to send your license file to Technical Support, where we would be happy to help further:

'System clock has been set back' error when starting Maple
 

Hi @olawattad, take a look at the ?Threads article about tools for parallel programming. 

About your specific example, our developers thought threads could be incorporated with, 

You could run each inner loop on a separate thread, or you could put all the (i,j) combinations into a list and have the task model pick them out one by one. 

Hello @TKChang99 ,

Thanks for bringing this up. Our Documentation team will investigate. Maple input may have been used for compactness of the table, efficiency of the worksheets, or to demonstrate the equivalency of Maple input and 2D input.

With that being said, feel free to right-click on Maple input and convert to 2D Math should you prefer it. 

Hello @C_R ,

We apologize for the confusion and thank you for bringing it to our attention. 

The Sim team will look to improve the help article in future versions of MapleSim. In the meantime they say that, 

the icon removes the override, the one beside it makes it a parameter of the subsystem/class

We hope that helps for now.

Hello @janhardo ,

We apologize that a thread was deleted that may have still been of interest.

The MaplePrimes team took a look, and found that a user deleted a comment, causing all children replies to that comment to also be deleted.

They are looking into  improvements to this behaviour in the future. 

For now, is the main goal achieved with something like this? 

 

f(s) := int(f(z)/(z - s), z)/((2*Pi)*I):
dfn := diff(f(s),s$n);
simplify(convert(dfn,factorial)) assuming n::posint;

-((1/2)*I)*(int(f(z)*(-1)^n*pochhammer(-n, n)*(z-s)^(-1-n), z))/Pi

 

-((1/2)*I)*factorial(n)*(int(f(z)*(z-s)^(-1-n), z))/Pi

(1)


 

Download how-to-get-general-expression.mw

Hi @RitaMath

We consulted with our Math team and unfortunately, Maple 2022  doesn't support numeric solution of elliptic PDEs. 

This PDE cannot currently  be solved exactly, either. There's not much Maple can do at this time.

We apologize for the inconvenience. 

Hi @Kasp262e ,

Have you tried unlinking the bullets and numbering of your second list from the previous list item? 

Hello @Fresch ,

Thank you for upgrading to Maple 2022.

We're sorry for the trouble. The ?latex article has this note about some limitations:

and DataFrames appear to be another in Maple 2022.0.

Our development team will look into improvements to future updates and versions of Maple.

In the meantime, their recommendations for workarounds are: 

The easiest is probably to make sure the DataFrame is never printed (by ending all appropriate statements with ":" instead of ";") and then calling DocumentTools:-Tabulate(test): to include a nicely formatted table in the worksheet; and finally export the worksheet to .tex.

Alternatively, you can convert the dataframe to, e.g., a Matrix, and latex that; but then you lose the row and column headers.

For posterity of this thread, there is a note in the Maple 2021 ?latex article that,

When working with large expressions, neither the automatic line-breaking, nor the breaklines option of latex, will break lines in fractions or across matrix lines (i.e., the number of matrix columns is not altered).
 

As such, manual manipulation of an expression or LaTeX output may be required to achieve the desired line breaking. 

Thank you for bringing this to our attention. We have released a patch to Maple 2021, MapleSim 2021, and Maple Flow 2021 on macOS to correct this problem involving doubling of characters on input. 

Anyone who uses macOS 11 or macOS 12 should install this update immediately. We also strongly recommend that all macOS users install this update, to avoid problems that may be triggered by future updates to your operating system.

To obtain this update:

We apologize for the inconvenience and thank you for your patience while we worked to find a solution.

1 2 3 Page 1 of 3