-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I realy know nothing about Maple, so any help would be nice. I am attempting to import a .pdb file into Maple, as part of converting some Mathematica code to Maple. I need something that that can accomplish something equivalent to the Import command in Mathematica. I have tried using readdata, ImportData…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to use a Taylor polynomial programmatically in Maple, but the following does not seem to work...
T[6]:=taylor(sin(x),x=Pi/4,6);convert(T[6], polynom, x);
f:=proc(x)
convert(T[6], polynom, x);
end proc;
f(1);
All of the following also do not work:
f:=convert(T[6], polynom);
f:=convert(T[6]…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
i am trying to make a 100 x 100 tridiagonal matrix with 2's going down the diagonal and -1's surrounding the 2's. i can make a tridiagonal matrix with only 1's in the three diagonals and preform matrix addition to get what i want, but i want to know if there is a way to customize the three diagonals…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Please refer to the screenshot.
I assigned Qswap to a matrix and when I try to view Qswap, it has nothing assigned to it!
Help will be appreciated =)
[IMG]http://i48.tinypic.com/2zybin4.jpg[/IMG]
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
So I had a system
#for given koefs
k:=3; n:=3;
#let us solve system:
koefSolution:= solve({
sum(a[i], i = 0 .. k) = 0,
sum(a[i], i = 0 .. k)-(sum(b[i], i = 0 .. k)) = 0,
sum(i^n*a[i], i = 0 .. k)-(sum(i^(n-1)*b[i], i = 0 .. k)) = 0
});
So I have a vector like
koefSolution := { a[0] = 7*a[2]+26*a[3]-b[1]-4*b[2]-9*b[3]…
>>> More