Maple Questions and Posts

These are Posts and Questions associated with the product, Maple
Hello, I'm trying to make a wrapper procedure that will launch an external program with some dynamic arguments. To do this I created a proc and used the launch command from the process package. My procedure seems to be syntactically correct, but when I run it all it does is echo the procedure code. Since nothing was working I have created a simplified procedure that simply tries to launch Notepad. Instead of launching notepad it just echos out the source of the procedure: My definition of the procedure RunNotepad: > RunNotepad() := proc() > use process in > launch("notepad.exe");
Hi, It's quite easy to find the eigenvalues of a matrix, but is there a function to find the dominant eigenvalue ?
when expanding an expression like (x+1)^7*(x-2)^9, how do arrange the terms by increasing/decreasing degree? ie ax^16+bx^15+cx^14+...
Is there a way to create periodic piecewise functions in Maple 10 for use in solving differential equations with periodic forcing functions?
I have a large program I have been writing using Maple 10 classic. The heart of the prgram is a large iterative loop that spits out various data as it converges on a solution. My problem is that I would like to see certain data and suppress other output. I accordingly assign a colon and semi-colon to the respective lines. But wether Maple actually displays what I want of not seems random. The screen is flooded with unwanted interim data, and only select desired output gets through. Is there some rule with what Maple outputs if its in an iterative or nested iterative loop?
Hello, everyone! I have a very nice, very sparse linear system (only containing 1s and -1s, with at most 2 entries per column). Thus, I immediately thought to take advantage the SparseIterative (or SparseDirect) methods associated with LinearAlgebra,LinearSolve, but alas, it isn't quite working. This is what I loosely do: gen_linear_system := proc(... some parameters ...) ... ls_m := Matrix(len, total_var, datatype='integer[1]', storage='sparse'); ... (fill matrix with appropriate 1s and -1s) return ls_m; end proc; solve_linear_system := proc(system_matrix::Matrix)
hi! I want to do maplet application that fourier series calculate given funtions how do I? thank you...
Thanks
Hi, Folks: I have two implicit functions (hyperboloid): sqrt((x-28)^2+(y-2)^2+(z-2)^2)-sqrt((x-20)^2+(y+20)^2+(z-6)^2) = 2 sqrt((x+15)^2+(y-2)^2+(z-2)^2)-sqrt((x-20)^2+(y+20)^2+(z-6)^2) = 10 I am able to plot these two functions through display3d, but right now I want to plot the intersection line. Anybody has comments or suggestions? Thanks a lot, James
Hi, How do i make maple to write a fist derivative with respect to time ie i want maple to show y' in the output.
Hi. I'm trying to make a 3D-plot of a function f(x,y) that is discontinuous but can not figure out how to do it. I'm new to Maple but I found that there's an option discont=true for 2D-plots. Something similar for 3D? Cheers
Hi, I want clear some variable Not all of them in my program(restart command clear all of them), is it possible in Maple to do that?Tanx.
I have a problem: I have an ODE, dT/dy, that depends on y and k, but k itself depends on rho and T. The only problem is rho cannot be obtained analytically--it's a complicated function. However, I can use a rootfinding algorithm,(fsolve), to determine rho at given values of y, thereby making my ODE solvable. I want to use dsolve to numerically solve this ode. The problem is I can't seem to be able to input the fsolve equation as an argument to the dsolve command. It keeps telling me : Error in fsolve, y is not solved for. But my intention is to use y to solve for T and rho in dsolve. If anyone has any idea I would greatly appreciate it.
How can I declare a matrix of boolean variables, and later perform logical operations.

Thanks
Hi people, I have two questions and help on any of them would be greatly appreciated. 1. My first question is how would i find the point(s) where the two equations intersect? eg. 4*(x-1)^2+(y-2)^2 = 5; x^2+4*y^2 = 1; 2. My second question is how do i find the turning points of a function? eg. x*cos(x^2)/(1+x^2) Again any help is really appreciated. Thanks in advance.
First 2194 2195 2196 2197 2198 2199 2200 Last Page 2196 of 2224