MaplePrimes Posts

MaplePrimes Posts are for sharing your experiences, techniques and opinions about Maple, MapleSim and related products, as well as general interests in math and computing.

Latest Post
  • Latest Posts Feed
  • It's possible to integrate a whole mapleworksheet in MapleTA. I made some fully randomized statistical questions in MapleTA. The calculations will be done in a MapleWorksheet and stored in a list. The MapleTA application only presents the output from this mapleworksheet by reading this list. Please download this questionbank from http://www.maplesoft.com/applications/app_center_view.aspx?AID=2062).
    Hello, i'm newbie here and spanish... Someone can help my, i want an procedure/function that you put an matrix and it will give you the rang/rank but not using the function implemented un maple... I'm using MAPLE 10 THX
    Open a worksheet in document model, and input the next line in math model plot(x^2,x=-1..1,title="title"); and it will show a plot. Now select "title" in the quotation marks (not include quotation marks), type in "aabb" (not include quotation marks) and press enter, there will be an error. But if you select "title" including quotation marks, and change to "aabb" (including quotation marks), there will no problem.
    The following seems like a bug. Now, it could be that Logic is not built to handle such requests, in which case it should die gracefully, instead of giving funny answers.
    > Logic[BooleanSimplify]((x > 3) &and ¬ (y > 5) &or (y > 5));
    
                    (5 < y) &or ((3 < x) &and ¬(5 < y))
    
    
    and yet
    > Logic[BooleanSimplify](a &and ¬ b &or b);
    
                                   a &or b
    
    This one asks for something trickier, and more difficult to ask for. If you are not quite sure where to post, then you should put it in the wish list. Here, you should document use cases for Maple (the complete system) which should 'just work', but for some reason doesn't. What is a use case? It is a description of a task that needs to be done, which should be a straightforward application of Maple. It belongs here if it turns out that it is not straightforward (or worse). The bulk of the posts should be about those task descriptions. Suggested solutions should, in most cases, be omitted. This is where we should put our trust in the developers to come up with a good way to solve the problem, rather than to try to micro-manage.

    Please use replies to this blog post for free-form wish list items for Maple 12. Anything you'd like to see, in any part of Maple, go for it.

    It's time for maple users here to really start thinking about Maple 12. What, you say, Maple 11 just came out, I barely know what's in it, give me some time! Well, no. Think about it: what are the developers doing? They are most certainly sitting idle. They finished Maple 11 some time back, so starting some time ago, they started planning Maple 12. So if mapleprimes users are quick enough, they might still be able to influence what goes into Maple 12. Ok, there are really two methods to go about asking for Maple 12 features:
    1. Wish list: the usual laundry lists of I want X
    This workshop is a part of Calculemus 2007, Hagenberg, Austria.

    The intent of this workshop is to examine more closely the intersection between programming languages and mechanized mathematics systems (MMS). By MMS, we understand computer algebra systems (CAS), [automated] theorem provers (TP/ATP), all heading towards the development of fully unified systems (the MMS), sometimes also called universal mathematical assistant systems (MAS) (see Calculemus 2007).

    Just came across and interesting blog post on language design, focusing on the architecture versus features dimension. Trying to place Maple on this, it pretty much has to co-exist with Perl in the Pragmatic column. For comparisons' sake, one would have to place Mathematica in the Consistent column. The arrow of time graph is quite interesting. Maple is firmly a 'mature platform'. Whether it is 'bloated' is a very subjective call at this point; people of a more minimalist bent would certainly say so, but compared to something like Perl or C++, it most definitely is not. However, it is rather inevitable that it will become bloated: Maplesoft needs to push out new versions for people to upgrade to, and to be able to sell those, 'new' features have to be there to warrant an upgrade, right?
    Maple 11 on linux so far has been fantastic, but there's a problem with printing. I use cups, and every other application brings up its printing information just fine. When I try to print in Maple, it gives me an error that says "No print service found". Does anyone know how to deal with this?
    We seem not to be able to run Maple 10 properly on our Uni network. The problem is that users can not save preferences or use the Compiler. It seems the problem is due to poor programming practice by Maplesoft, although the issue is obscure and I am prepared to be convinced that the problem is our Computing Service's implementation of it. The problem is (I believe) this. Our system is as follows (under XP Pro): All users and PC's live in our Active Directory and all software is applied via group policy. Users have roaming profiles (which are not backed-up!) and their 'Start menu' and 'Desktop' are redirected to a 'read-only' server location
    Just wonder if anyone knows how I can improve on minimizing this large poly, subject to constraints: Download The minimum found was 82.7 It has found a local minima, but there must be a global minima. Do i really have to splash out on the GOT package?
    Hello, I would like to use Maple instead of Matlab, well I rewrite the Matlab code to Maple like following. The output is correct, but it spends more time than in Matlab. Is it possible to rewrite my Maple code to get output faster? restart: linearni_model:=proc(beta,sigma) local n1,n2,Y,X,Y1,Y2,se,se2,t1,t2,t3,t4,vbeta,t,si2,e1,e2,e3,e4,Yp,N,s2,n; use Statistics in X:=Matrix([[1, 1, 1, 1, 1], [1, 1, 1, 1, -1], [1, 1, 1, -1, 1], [1, 1, 1, -1, -1], [1, 1, -1, 1, 1], [1, 1, -1, 1, -1], [1, 1, -1, -1, 1], [1, 1, -1, -1, -1], [1, -1, 1, 1, 1], [1, -1, 1, 1, -1], [1, -1, 1, -1, 1], [1, -1, 1, -1, -1], [1, -1, -1, 1, 1], [1, -1, -1, 1, -1], [1, -1, -1, -1, 1], [1, -1, -1, -1, -1]]);
    Hello, I would like to use sum command to compute sum. > A := Matrix(3, 2, {(1, 1) = 1, (1, 2) = 2, (2, 1) = 2, (2, 2) = 3, (3, 1) = 3, (3, 2) = 4}); > sum(A[k, 1], k = 1 .. 3); Error, bad index into Matrix Why it occures an error? If I use sum over list, it works. How can I sum members of 1st column of Matrix? Thanks Vladimir
    Hello, Can someone please help me with entering an if statement with the decision: if (x is between A and B) and if (y is less than C) then ... end if end if I am having trouble evaluating an if statement when the argument lies between two constants as well as incorporating an additional logic check. Thanks, Ken
    First 245 246 247 248 249 250 251 Last Page 247 of 306