C_R

3557 Reputation

21 Badges

6 years, 79 days

MaplePrimes Activity


These are questions asked by C_R

Some menu fonts have become smaller under Windows 10 for some reason.
There where no changes of the system settings nor system updates. A system restart did not restore to normal font size. This also on Maple 2024 and lower.

Any ideas what could have caused this and how to restore to normal?

That's from annother Windows 10 system.

 

The following Array does not convert to a column vector as described in ?convert,Vector

A := Array([1, 2, 3]);
convert(A, Vector);# the default orientation should be column;
whattype(%);
convert(convert(A, list), Vector);# here the default orientation is column
                         A := [1, 2, 3]

                           [1, 2, 3]

                          Vector[row]

                              [1]
                              [ ]
                              [2]
                              [ ]
                              [3]

Is there something special with the data structure Array that convert(A, Vector[column]) has to be used to convert to a column vector?

I am interested in having bold notation for vectors and matrices.

Any commands or packages that output expressions this way?

MapleCloud opend from Maple2025 and 2024.

Has this extended scrollbar always been like this?
Maybe it is a browser thing.
Which browser is Maple using?
Are there any settings I could adjust?

In the below I would like to format the odes as they appear in the second and third ode (in green brackets).

I.e. making the first operand with the minus sign inside the parentheses the second one. I was hoping for simplify,size but that does not do the trick.

How to do this?

Format_odes.mw

3 4 5 6 7 8 9 Last Page 5 of 46