MaplePrimes Questions and Posts

These are Posts and Questions associated with the product, MaplePrimes

Hello

I am a student of an engineering career

The math teacher is going to ask us to solve some exercises Matlab

The teacher is very hard and explains nothing of Matlab in class

We must learn to use the program on our own viewing internet watching tutorials

I was wondering if somebody could help solve some exercises.

Are only three exercises which are imposible to me

I would appreciate it greatly.

Thank you

My e-mail :

alessagosti1@gmail.com

For the last 24hrs or so I have found it almost impossible to upload worksheet files in response to questions.

My usual approach is

Big green up-arrow:
(uploader pop-up appears)

Browse files

(this still works)

Upload file

This is the problem step - I generally just get "waiting for Mapleprimes" in my browser's annunciator box: and I wait, and wait, (as in >5 minutes) and still this step does not complete. Just to be annoying, every once in a while the file will upload as normal, such but success is now the exception

I'm seeing the same issue in Firefox 45.0.2 and Chrome 50.0.2661.75mon Win 7, 64-bit.

Anyone else seeing the same issue?

 

 

I am currently working on FDM ,i have 2 coupled nonlinear pde ,i need help in solving these equation using maple code.

> restart:

> alias(f=f(tau,eta), theta=theta(tau,eta));

 

>

 

> PDE1:=S*diff(f,tau,eta)=eta^2*diff(f,eta)^2+(6*eta^2-2*f*eta)*diff(f,eta)+(6*eta^3-f*eta)*diff(f,eta,eta)-eta^4*diff(f,eta,eta,eta);

 

> PDE2:=eta^4*diff(theta,eta,eta)+2*eta^3*diff(theta,eta)-Pr*(f*eta^2*diff(theta,eta)+S*diff(theta,tau))=0;

 

The code I write is properly indented.  The operation of pasting it here strips the white space and makes it hard for the reader to comprehend the structure. Manually restoring the appropriate indentation is doable but tedious, made more so because the characters we see here are in a variable width font.  The rationale might be that, given a variable width font the indentation is going to be inconsistent, but that isn't the case if the preformatted style is used, which I do, for code.

Is there any way to turn off the white space stripping?  Presumably this is some ridiculous xml-based processing feature.

 

sqrt(5) gives sqrt(5)

sqrt(1+sqrt(5)) gives "You have entered an invalid Maple expression"

sqrt(u) gives sqrt(u)

sqrt(1+u); gives "You have entered an invalid Maple expression"

 

when using the Maple Math icon. How can I get the correct input for the two expressions?

Most of the tags in this question example are rediculous "the, you, is, and, help, how," etc... .  I tried editing them but I cannot save tags to remove junk tags.  Above all, the most important tag to the question Poincare is not there.  This specific issue is for the recent question  http://mapleprimes.com/questions/207460-Poincare-Section

 

 

As some of you have previously mentioned, we have seen an increase in the amount of spam on MaplePrimes over the past few months. We recently took steps to improve it in a recent update that has so far proven helpful, and have also increased our behind-the-scenes efforts to proactively remove and block spam accounts.

Today we made a couple of additional minor changes to member profiles that should help further. Specifically, members can no longer enter HTML tags in the biography, 'technical interests/fields', and 'other interests' sections within their profiles. Spammers were co-opting these areas to create links back to their sites, and it is our hope that MaplePrimes will become much less attractive to them now that the capability has been removed.

In addition, we de-activated a large number of accounts (with 0 reputation) that were using these fields for spam. Prior to taking this action, we reviewed the records we were deactivating, and did not see any evidence of legitimate members. However, there is a small chance that we blocked a legitimate account in the process of doing this. If this has occurred to you, please accept my apologies and send an e-mail to custservice@maplesoft.com and we will reactivate it quickly.

 

I hope that in the future if mapleprimes ever does another overhaul that it does NOT do what has recently been done at the mathematica forum I just came across. http://community.wolfram.com/groups/-/m/t/744097?p_p_auth=AfGyGp7X

Mapleprimes has endured a forum change from primes1 to primes2(current forum) and all posts/questions have for the most part remained intact, and have been repaired or fixed by the developers if pointed out .. thumbs up for Maplesoft and Mapleprimes developers for retaining all forum data.  Most posts that didn't have a home were simply relocated, but are still accessible.

In the case for mathematica, a whole student forum was removed and is being scrutinized, and decided by mathematica developers whether or not the post should be put back into the forum (currently none of the posts have been restored).  I would think that would be most dissappointing from any user standpoint. 

Off to the right of mapleprimes we have Recent Questions/Maplesoft Blog Posts/Recent Posts and Active Conversations.

I propose to have the category Workarounds added. 

 

There are two instances I can think of that would be beneficial for Maple users that would belong here.  The most recent one http://www.mapleprimes.com/posts/201844-Possible-Bug-In-Maple- and one regarding issues adding the dissipative term to the heat equations http://www.mapleprimes.com/questions/97391-Whats-Wrong-With-Maple-Solution

Users of older versions of Maple or even current Maple versions not yet updated would find this quite useful. 

 

There are some great comments and replies by users that are worth upvoting.   Also choosing as best answer to some posts that were converted from questions would also be helpful here at mapleprimes.

There are no users with 0 reputation.  It appears all users with 0 reputation and negative reputation have been erased.  One user I can not find who is or now was a legitimate user is John Mcloone an employee at Mathematica who made a post here.  I can only think during the recent spam attack that all users with 0 or negative reputation were removed.  Some of those users had legitimate questions.  Where did those users, John Mcloone and their posts go? 

I use Maple18 on unix 64. I have the MAPLE and the LD_LIBRARY_PATH properly set up to use OpenMaple. When I link my code to OpenMaple library I get segmentation fault when I try to debug using gdb. In order to isolate the problem, I created a simple temp.cc file that contains the following:

 

#include <string>

#include <stdio.h>

 

int main()

{

int x = 10;

std::string abc;

abc = "testString";

printf("this is it %s\n", abc.c_str());

}

 

When I compile the code using g++ -g -o temp temp.cc I can run ./temp and step into the code using gdb with no problems.

 

If I link to Maple Library g++ -g -o temp temp.cc -L/opt/maple18/bin.X86_64_LINUX –lmaplec

 

I can run the code ./temp but I can not step into it using gdb. I get the error as shown below when I try to step over std::string abc.

 

//-----------------------------------------------------

 

GNU gdb (GDB) 7.8

Copyright (C) 2014 Free Software Foundation, Inc.

License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>

This is free software: you are free to change and redistribute it.

There is NO WARRANTY, to the extent permitted by law.  Type "show copying"

and "show warranty" for details.

This GDB was configured as "x86_64-unknown-linux-gnu".

Type "show configuration" for configuration details.

For bug reporting instructions, please see:

<http://www.gnu.org/software/gdb/bugs/>.

Find the GDB manual and other documentation resources online at:

<http://www.gnu.org/software/gdb/documentation/>.

For help, type "help".

Type "apropos word" to search for commands related to "word"...

Reading symbols from temp...done.

(gdb) b main

Breakpoint 1 at 0x40091f: file temp.cc, line 6.

(gdb) r

Starting program: xxxxxxxxxxxxxxxxxxxxxxxxxxx

[Thread debugging using libthread_db enabled]

Using host libthread_db library "/lib/libthread_db.so.1".

 

Breakpoint 1, main () at temp.cc:6

6         int x = 10;

(gdb) n

7       std::string abc;

(gdb) n

BFD: reopening /tmp/xf-dll/xf-1274259bc6684076beea8652f625b03bf2133.tmp: No such file or directory

 

BFD: reopening /tmp/xf-dll/xf-1274259bc6684076beea8652f625b03bf2133.tmp: No such file or directory

 

BFD: reopening /tmp/xf-dll/xf-1274259bc6684076beea8652f625b03bf2133.tmp: No such file or directory

 

Can't read data for section '.eh_frame' in file '/tmp/xf-dll/xf-1274259bc6684076beea8652f625b03bf2133.tmp'

0x00000000004007a8 in std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string()@plt

    ()

(gdb) n

Single stepping until exit from function _ZNSsC1Ev@plt,

which has no line number information.

Segmentation fault

Mapleprimes should have an option to sort Mapleprimes by the date of the original poster.

There have come unwanted lines and marks . I donot know how to remove them. Using doc.block, remove block seems to be little tough to incorporate! Please enlighten me. Modified doc. is most welcome. Thanks. Ramakrishnan V 

Gaussian Elimination Method

 

 

Given*the*equations

  restartreset:

with(Student[LinearAlgebra])``

(1)
Coefficient Tanle

Equation 1

Equation 2

Equation 3

Equations

`m__1,1` := 3:
`` 

`m__2,1` := 2:
``

`m__3,1` := 1:
``

`m__1,1`*x__1+`m__1,2`*y+`m__1,3`*z = `m__1,4`; = 3*x__1+y-z = 3

`m__2,1`*x__1+`m__2,2`*y+`m__2,3`*z = `m__2,4`; = 2*x__1-8*y+z = -5

```m__3,1`*x__1+`m__3,2`*y+`m__3,3`*z = `m__3,4`; = x__1-2*y+9*z = 8

The equations in matrix form is given by

Matrix([[3, 1, -1, 3], [2, -8, 1, -5], [1, -2, 9, 8]])

(2)

The Gaussian Elimination gives the simplified natrix equation as given below:

Matrix([[3, 1, -1, 3], [0, -26/3, 5/3, -7], [0, 0, 231/26, 231/26]])

(3)

``The equations in simplified form are:

3*x+y-z = 3

(4)

-(26/3)*y+(5/3)*z = -7

(5)

(231/26)*z = 231/26

(6)

``

The aolution ia obtained by solving the above equations in reverse order

{x = 1, y = 1, z = 1}

(7)

 

``

 

Download GausianFinal15Nov2015.mwGausianFinal15Nov2015.mw

Why have there been so many old Posts and Questions moving to the top of the Active Conversations stack the past two days, even though they have no new activity? This makes MaplePrimes very difficult to use! Please make it so that the Active Conversations stack is sorted by the actual time of the most-recent addition to the thread.

First 11 12 13 14 15 16 17 Page 13 of 17