Christopher2222

MaplePrimes Activity


These are answers submitted by Christopher2222

The icons across the top of your screen are controlled by your graphics card - you can adjust those settings separate from maple through windows control panel - display.  The plot size I believe is also affected by this setting. 

The rest of the worksheet size is can be changed by holding crtl and a pressing a number (default size is 2)

The reason I ask is because the latest maple bug http://www.mapleprimes.com/posts/201844-Possible-Bug-In-Maple- appears to be fixed in Maple 2015 by first loading the Physics package.  But it needs to be loaded right after a restart.

I was hoping your Physics addons would also fix earlier versions of Maple since I don't think Maplesoft would be providing updates to earlier Maple versions. 

I tried a few other packages but only the Physics package seemed to rid Maple (only 2015) of the bug.  Also I only tried the second option of loading the Physics package into a user library rather than the system library for Maple18 to see if it worked in an earlier version which unfortunatley did not.

 

add(i, i = [seq(t || i, i = 1 .. 21)])

t1+t2+t3+t4+t5+t6+t7+t8+t9+t10+t11+t12+t13+t14+t15+t16+t17+t18+t19+t20+t21

(1)

restart; gc()

c := t1+t2+t3+t4+t5+t6+t7+t8+t9+t10+t11+t12+t13+t14+t15+t16+t17+t18+t19+t20+t21-t0+t0+t22+t23

t17+t18+t19+t20+t21+t1+t22+t23+t2+t3+t4+t5+t6+t7+t8+t9+t10+t11+t12+t13+t14+t15+t16

(2)

c := t1+t2+t3+t4+t5+t6+t7+t8+t9+t10+t11+t12+t13+t14+t15+t16+t17+t18+t19+t20+t21-t0+t0+t22+t23

t17+t18+t19+t20+t21+t1+t22+t23+t2+t3+t4+t5+t6+t7+t8+t9+t10+t11+t12+t13+t14+t15+t16+t15+t16

(3)

c := t1+t2+t3+t4+t5+t6+t7+t8+t9+t10+t11+t12+t13+t14+t15+t16+t17+t18+t19+t20+t21-t0+t0+t22+t23

t17+t18+t19+t20+t21+t1+t22+t23+t2+t3+t4+t5+t6+t7+t8+t9+t10+t11+t12+t13+t14+t15+t16+t15+t16

(4)

restart; gc()

with(Physics):

c := t1+t2+t3+t4+t5+t6+t7+t8+t9+t10+t11+t12+t13+t14+t15+t16+t17+t18+t19+t20+t21-t0+t0+t22+t23

t1+t2+t3+t4+t22+t23+t20+t21+t19+t17+t18+t15+t16+t13+t14+t11+t12+t9+t10+t8+t6+t7+t5

(5)

c := t1+t2+t3+t4+t5+t6+t7+t8+t9+t10+t11+t12+t13+t14+t15+t16+t17+t18+t19+t20+t21-t0+t0+t22+t23

t1+t2+t3+t4+t22+t23+t20+t21+t19+t17+t18+t15+t16+t13+t14+t11+t12+t9+t10+t8+t6+t7+t5

(6)

c := t1+t2+t3+t4+t5+t6+t7+t8+t9+t10+t11+t12+t13+t14+t15+t16+t17+t18+t19+t20+t21-t0+t0+t22+t23

t1+t2+t3+t4+t22+t23+t20+t21+t19+t17+t18+t15+t16+t13+t14+t11+t12+t9+t10+t8+t6+t7+t5

(7)

``

 

Download maplebug.mw

 

 

Using map2 should get what you want

L := [[1, 2, 3], [4, 3, 2]]:

map2(map, `^`, L, 2)

                              [[2,4,9],[16,9,4]]

 

 

 

One more way

zip(`^`,L,2)

 

 

Not near Maple right now so I can't be sure but try

readdata("c:/yourfile.dat",float,2)

 

How about this

seq(`if`(data[..,1][i]="a",data[i],[op(data[i][3..4]),op(data[i][1..2])]),i=1..nops(data))

 

 

In the plot axes=box maybe is what you mean.

plot(x^2,axes=box)

However what one can do is use mapleprimes as the viewer. 

Using Ask a question (but not to post it) one can upload the file and insert contents :)

The only issue with that is if the document has collapsed fields, one would not be able to view the contents of any collapsed fields.

 

use this option in your plotting command

tickmarks=[[1="a",2="b",3="c",4="d"],default]

etc.. Just add whatever words you want at the numeric location you want in place of the a b c d etc.. I show.

Look at Tangent Student[Calculus1]

See here for help as well http://www.mapleprimes.com/questions/152073-Tangent-Problem

 

to get you started plot the equation a:=plot(x^2-4) use pointplot for your points then use display to plot both of them on the same graph

with(plots);
a := plot(x^2-4);
b := pointplot([[-2, 0], [2, 0]], symbol = circle, symbolsize = 20);
display(a, b);

I'd like to hear from the mapleprimes moderators on this issue as well.  If this is something they're working on or is mapleprimes more or less just floating on it's own now.

insert code edit region under insert menu, enter your code then hide code edit region.

First 13 14 15 16 17 18 19 Last Page 15 of 48