Christopher2222

MaplePrimes Activity


These are answers submitted by Christopher2222

This code is quite a bit longer.  Your values wrap around the screen so I used a smaller sample just for illustration purposes.

b := []:
c := []:
for h from .01 by .1 to .5 do
  AA := (1+h)/h^2:
  b := [op(b),h]:
  c := [op(c),AA]:
end do
printf("%a \n %a", b, c);

[.1e-1, .11, .21, .31, .41]
 [10100.00000, 91.73553719, 27.43764172, 13.63163371, 8.387864366]




rhs(sol[5]) will provide you with what you need.

Maybe this will help

Create a combo box and use a command like to create a list in the box

DocumentTools[SetProperty](ComboBox0, itemList, [1, 2, 3, 4, 5]);

Does it occur in both classic and standard interfaces? 

That has never happened on me before XP.  This is a Windows 7 problem for sure.  Try using compatabilty mode in windows 7 for Maple12 that could fix your problem. 

 

From the windows website:

 

1. Right click on the program's shortcut (LNK file), .EXE file, BAT file, CMD file, or MSI file.

2. Click on Properties.

3. Click on the Compatibility tab. (see screenshot below)
NOTE: If the Compatiblity options are grayed out, then it is a 64 bit program and cannot be changed.

Compatibility Mode-compatibility-1.jpg
As you say you are running a 64 bit version so you may be out of luck.  But Windows 7 is your problem.

Although the answer is already given an alternate way is...

interface(plotdevice=char)  # changes to plot in ascii art

interface(plotdevice=inline) # is the default

 

 

 

Thanks to you both, the plot in the proc is what I was looking for.

I didn't look into it too much but maybe this webpage will of some help http://www.math.sunysb.edu/~scott/Book331/Art_Phugoid.html

A bezier curve with these points (3,5,4) (2,8,1) (7,6,4) (0,3,2) would look like this

with(plots);
x := t-> x0*(1-t)^3+3*t*x1*(1-t)^2+3*t^2*x2*(1-t)+x3*t^3;
y := t-> y0*(1-t)^3+3*t*y1*(1-t)^2+3*t^2*y2*(1-t)+y3*t^3;
z := t-> z0*(1-t)^3+3*t*z1*(1-t)^2+3*t^2*z2*(1-t)+z3*t^3;

x0 := 3; y0 := 5; z0 := 4;
x1 := 2; y1 := 8; z1 := 1;
x2 := 7; y2 := 6; z2 := 4;
x3 := 0; y3 := 3; z3 := 2;

spacecurve([x(t), y(t), z(t), t = 0 .. 1], axes = box);


 

You can adjust the font size.

Select the whole table -> select format -> Character -> attributes   and change the font size to something smaller than the default 12.

Without knowing exactly what's in your table but guessing it probably consists of text and equations changing your font size should get exactly what you need.

I link two threads that will be of interest

http://www.mapleprimes.com/questions/125062-Play-Audio-File-From-Maple  
A linked worksheet for the spectral analysis of a whale call.

http://www.mapleprimes.com/questions/124373-Deconstruct-A-Waveform-Into-Its-Fundamental#comment124735

Spectral analysis of an air conditioner

For some additional interest you can check out my answer from here http://www.mapleprimes.com/posts/125024-Russian-Roulette

In M12

restart;gc():
with(LinearAlgebra):
time[real](RandomMatrix(500,generator=0.0..1,outputoptions=[datatype=float[8]]))

                      0.031

restart;gc():
with(LinearAlgebra):
time[real](RandomMatrix(2500,generator=0.0..1,outputoptions=[datatype=float[8]]))

                       0.359

 

 

This issue is most likely a windows 7 issue.  It is not experienced in Maple 16.02 32bit Windows XP

You could use student[intercept] or intersection from the geometry package.

> assume(t::real);
> z := t = conjugate(a)*b+conjugate(c)*d;

> a := solve(z, a);

                                     ________
                                           _  
                                     -t~ + c d
                               a := ---------
                                        b    
> simplify(expand(expand(a)));

                                            _
                                   -t~ + c d
                                 - --------
                                      _    
                                      b    

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