Thomas Richard

Mr. Thomas Richard

3556 Reputation

13 Badges

14 years, 166 days
Technical professional in industry or government
Aachen, North Rhine-Westphalia, Germany

MaplePrimes Activity


These are answers submitted by Thomas Richard

Please check the help page by entering ?plottools:-getdata in Maple. It's very easy to extract the data points from that structure. Exporting can then be done via the generic Export command, or (more specifically) ExcelTools:-Export and ExportMatrix (which supports various MATLAB formats).

Quoting from ?Groebner,MonomialOrders:

'matrix'(M,V) is a matrix order, where V is a list of variables and M is a list of lists of rational weights.

So you simply have to rewrite your definition of M into: M:=[[1,0],[0,1]];

The LA shortcut notation you had used is for creating Matrices, and equivalent to assigning M:=Matrix([[1,0],[0,1]]);

Please see the help page by entering ?convert,D in Maple, or visit the online help page.

There are many ways to obtain this, and your approach using indets with option 'function' is a good first step, IMHO. To proceed:

eq := diff(x(t), t) = x(t) + 1;
ief := indets(eq,'function');
remove(has, ief, 'diff');

Since dot releases (aka minor updates) typically do not introduce any new functionality, we do not document their changes as extensively as we do with the "What's New" pages for major versions.

For a summary, please see Eithne's announcement or the download page linked from there.

You supplied IBC as a set, and PDE outside that set, but pdsolve expects one set (or list) of equations. So if you define IBC as a sequence and then wrap PDE and IBC into a set (or list), pdsolve will be happy with that input.

IBC := u(-Pi,t)=u(Pi,t), (D[1](u))(-Pi, t) = (D[1](u))(Pi, t),u(x,0)=sin(x);
sol := pdsolve([PDE,IBC]);
pdetest(sol,[PDE,IBC]); # optional check

 

Yes, this feature was introduced in Maple 14 and has been expanded several times, just again recently. Please see ?pdsolve,boundaryconditions and - if you have the new Maple 2017 - also ?updates,Maple2017,PartialDifferentialEquations.

No, these are very different applications. Use the right tool, as Robert Lopez would say. ;-)

You can model e.g. a motor in MapleSim - which is technically an add-on to Maple - and export it into an S-function using our MapleSim Connector (http://www.maplesoft.com/products/toolboxes/maplesim_connectivity/) .

Conversely, you can "tap" a Simulink model via BlockImporter (http://www.maplesoft.com/products/blockimporter/index.aspx) and import the equations into Maple (roughly speaking).

If that's not what you need, please specify.

This will be fixed in the next version. Thank you for bringing it to our attention.

For bug reports, it's best to use the SCR form (Software Change Request) under the More drop-down menu.

Adding option format="CSV" to the Import call will return data as a DataFrame. Then data[1] is a DataSeries, which can be converted into the requested Vector:

data := Import("http://fs3.fex.net/get/245716150875/11071260/data.txt",format="CSV"): # colon!
whattype(data);
mat:=data[1];
whattype(mat);
vec := convert(mat,Vector);

Perhaps the number of steps can be reduced; I haven't tried thoroughly.

First, if you want to use j as the imaginary unit, then say

interface(imaginaryunit='j'):

You can then enter j directly, or still use the j (or i or I) symbol from the Common Symbols palette.

Next, you will have to attach a unit to j*u as well. I'm using 1D input here:

with(Units[Standard]):
interface(imaginaryunit='j'):
sol := solve(12*Unit(V)=abs(5*Unit(V)+j*u*Unit(V)),u);
sol[2];

In the future, please post code snippets so that we can copy&paste your input, or upload your worksheet if it's longer than a few lines.

The simplify command needs a little help here, so that the pattern Ei(1,z)+Ei(1,-z) can be fully recognized:

expr2 := Ei(1, I*BW*Pi*deltas-(5*I)*BW*Pi*ts)-Ei(1, -I*BW*Pi*deltas+(5*I)*BW*Pi*ts);
f2 := factor(expr2);
s2 := simplify(f2) assuming real, BW > 0, deltas > 0, ts > 0, deltas <= ts, 2*BW*ts >= 1;

I think the assumptions can be reduced, by the way.

About the Gömböc (or Gomboc for all those people with limited keyboard layouts, haha), please see http://www.maplesoft.com/company/casestudies/Professional/Gomboc.aspx. I think you can contact the authors and ask them for their Maple worksheet(s).

Searching for Gomboc on our corporate web site yields some more results.

This is a side effect of the sum command being more cautious since Maple 2016; please see Help > What's New > Advanced Mathematics > Symbolic Summation. Or visit the online help page www.maplesoft.com/support/help/Maple/view.aspx?path=updates/Maple2016/AdvancedMath#SymbolicSummation.

So, to obtain the behaviour of Maple 2015 and before, either add the new 'formal' option to the sum calls, or set an environment variable:

_EnvFormal:=true:

This is a side effect of mixing up two types of indexing: the normal way (with square brackets) and the so-called programmer indexing (with parentheses). The latter should be used only if you really know what you do.

So the following corrected code works:

for k from 0 to m do
    X[k+1] := GAMMA(k*alpha+1)*(a*X[k]-b*(sum(X[s]*Y[k-s], s = 0 .. k)))/GAMMA(k*alpha+1+1);
    Y[k+1] := GAMMA(k*alpha+1)*(-c*Y[k]+d*(sum(X[s]*Y[k-s], s = 0 .. k)))/GAMMA(k*alpha+1+1)
end do;

For larger values of m, you may also consider replacing sum by add, but that's a different topic.

First 17 18 19 20 21 22 23 Last Page 19 of 45