C_R

3527 Reputation

21 Badges

6 years, 54 days

MaplePrimes Activity


These are replies submitted by C_R

@Muhammad Usman 

I still get this

Make sure that your have deleted old links and upload again with 

@Muhammad Usman 

Can you repost the file. I get a page not found message when I click on it.

@mmcdara 

No problem. With your case study the OP should have enought feedback to advance.

There is one else too much or there is soemthing missing

The first if condtion will never be true since

Did you mean v[i-1]? Without the loop and more information about u[i] and v[i] its difficult to tell what else is not working.

@segfault 

This looks similar to the 2k case that I have posted. 

The only way to improve the situation is to try out different display resolutions in combination with font scaling if those things exist on Linux. Zooming in Maple changes on Windows small features sometimes in bigger steps than large features

Graphic cards often come with filters (anti- aliasing for example) that could have a positive effect as well.

 

It could be that there is a typesetting way to change a displayed symbol to something bigger. I have no idea how this could be applied to operators. 

@acer might know.

In 2d math Output Maple replaces the multiplication symbol with a white space. In the same way 2d math Input does not require a multiplication symbol. A white space is enough. Is that separation not pronounced enough that you prefer a dot instead?

@segfault 

Can you confrim that the canvas background is black on Maple 2002 or did something go wrong with the uplaoded image.

What operating system you are working on?

What happens when you zoom into a worksheet with the control+mouse wheel?

Consider pasting or uploading code. This would make life easier for people who want to help

To better understand the regression that you see: Can you send a screen shot?

This  is how it looks on my screen.
 

4k resolution (150% font scaling recommended by Windows)

 

2k resolution (100% font scaling - image enlarged for better comparision)

Maples zoom was set for both images to 100%.

@nm 

I can reproduce the above with Maple 2024, Physics 1724 and 1744 but not the original post (see update of my observation)

If I change the unkowns to a set instead of a list in the first attachement, in both cases an empty result is returned.

For the second attachement Maple does also not return an empty result immediately when a set is used. Maple tries "forever".

 

Update: The oberservation above was made with 2024, Physics 1724.

Attached is 1744 which is also different
why_solve_hangs_with_subscripted_may_15_2024_-_reply_c_r.mw

@ 

Since Maplesoft is not responding, I assume that you have discovered a real bug.

As Maple, MF must have a kind of a parser that translates user input to something that can be processed by a math server (called mserver in windows task manager) that does the math. The user interface then reformats the output from the server to something nice looking. Both Maple and MF use the same mserver. The MF parser must be different since MF input is different from Maple (=  versus   ;enter). It seems that the parser misinterprets the sum. The MF parser also prevents some commands and libraries from beeing used but not basic commands like sum (I would be surprised if not).

Here is my last suggestion. You can try to “smuggle” expressions unevaluated or with delayed evaluation to the  Maple server (replace ; by =)


sum('A^i', i = 0 .. 50);
 50    49    48    47    46    45    44    43    42    41    40
A   + A   + A   + A   + A   + A   + A   + A   + A   + A   + A  

      39    38    37    36    35    34    33    32    31    30
   + A   + A   + A   + A   + A   + A   + A   + A   + A   + A  

      29    28    27    26    25    24    23    22    21    20
   + A   + A   + A   + A   + A   + A   + A   + A   + A   + A  

      19    18    17    16    15    14    13    12    11    10
   + A   + A   + A   + A   + A   + A   + A   + A   + A   + A  

      9    8    7    6    5    4    3    2        
   + A  + A  + A  + A  + A  + A  + A  + A  + A + 1


eval(sum('A^i', i = 0 .. 50));
             [1.81818180244525  0.909090893354340]
             [                                   ]
             [1.51515148892390  2.42424239801481 ]


eval('sum(A^i, i = 0 .. 50)');
                  [1.818181802  0.9090908934]
                  [                         ]
                  [1.515151489  2.424242398 ]

eval(uneval(sum(A^i, i = 0 .. 50)));
                  [1.818181802  0.9090908934]
                  [                         ]
                  [1.515151489  2.424242398 ]


I hope this can serve as a work arround until this issue gets fixed.
You said that entering numeric values is not that good as with Mathcad. Did you used the Tab key to jump from one matrix entry to the next?

The strange looking commands are badly renderd HTML codes closely realated MathML which is the underlying language for math formating. Normally they are not visible

Maples help system is a better reference (if available in MF)
Hope this helps.

@Thomas Richard @Ronan 

There was no change in the system configuration.
 

I kept the Maple sessions running. After 45 min I tried "save as" which either had an effect or the issue resolved on its own silently.
After that I restarted Windows again and the issue was back. I noticed windows explorer not showing file icons and the file preview in the explorer was not working. I connected via VPN to the domain network tried again "save as" and noticed that Maple started responding as normal.

 

I will now not restart the system (for the rest of my life) and get some work done.


Somehow awt.dll , seems to be involved in this but now the case is cold. Its difficult to drill down further since the Java environement is kind of a black box.

And: SFC found some corrupted files and registry entries. Next time I will run the tool before dooing anything else.

I still suspect something with the network. Maybe Windows can better deal with network issues than the JavaAPI which only uses a subset of system functions. Just a guess.

 

Thank you for the suggestions


 

@Thomas Richard 

I can't demonstrate this at the moment, but on 4k the red lines are not visible. Changing the display resolution, the font scaling and / or maple zoom makes the lines appear / disappear.

@ 

There is something weird. So far tried these and they should also work in Maple Flow according to the manual (chapter 5.1). Try copy pasting them (maybe this works better)
 

sum(A^i, i = 0 .. 50);
                  [1.818181802  0.9090908934]
                  [                         ]
                  [1.515151489  2.424242398 ]

add(seq(A^i, i = 0 .. 50));
             [1.81818180244525  0.909090893354340]
             [                                   ]
             [1.51515148892390  2.42424239801481 ]

add(A^i, i = 0 .. 50);
             [1.81818180244525  0.909090893354340]
             [                                   ]
             [1.51515148892390  2.42424239801481 ]

Did you enter the Matrix with the pallete? What happens when you enter the Matrix like this

A := Matrix(2, 2, [[0.2, 0.3], [0.5, 0.4]]);

Try also to verfiy of what type A is by entering

whattype(A)

You should get Matrix as answer.

 

@ 

using Maple I get an instanteanous response

Mapleflow allows to use Maple commands. This might be a help. Tomorrow someone from Maplesoft will probably give a better answer. As a general rule in Maple, add should be used for numerical summs and sum rather for symbolic expressions. This might be the reason for the slow response. Here sum works without delay.

First 28 29 30 31 32 33 34 Last Page 30 of 69