acer

29759 Reputation

29 Badges

19 years, 316 days
Ontario, Canada

Social Networks and Content at Maplesoft.com

MaplePrimes Activity


These are answers submitted by acer

In the .eps file that is produced, there'll likely be some lines that look like this, % set page orientation (usage: portrait or landscape) /portrait {/po true def} def /landscape {/po false def} def You could try switching the true and false above. Or, you might look for the section that begins with, %%BeginSetup and in that section find a line that is simply, portrait You might try changing that to landscape instead. It may be that only one of those two changes is sufficient. I suppose that it might also be the case that it's already set to landscape. Or there might be a setting in SW to orient the inserted .eps image. If there is, I'd expect it to use those same standard terms, "portrait" and "landscape". acer
Does it work OK if your Matrix ls_m is created with datatype=float[8]? If so, then it'd be a weakness that neither the help-page mentions that datatype restriction nor the solver internally copies the integer[1] data to float[8] datatype. At least one of those should be true. acer
I may have misinterpreted what you meant by the formatting with the dots. There are several ways to go about it. Here are a few. g := proc(n) local f,F,i; f := (t,n) -> n+1/t; F := 1/x; for i from n to 1 by -1 do F := f(F,i); od; F; end proc; g(5); G := proc(N,n) if n=0 then 1/x else N-n+1+1/procname(N,n-1); end if; end proc; G(5,5); N:='N': H := proc(n) global N; if not assigned(N) then N:=n; end if; if n=0 then 1/x; else N-n+1+1/procname(n-1); end if; end proc; H(5); acer
The upgrade to Maple 9.5.1 purportedly fixes the issue you describe for SuSE 9.1, and maybe it will work for your SuSE 9.2 as well. http://www.maplesoft.com/support/faqs/Maple95/Installation/9.aspx acer
with(LinearAlgebra): RandomMatrix( 3, generator=0 .. 10, outputoptions=[shape=symmetric] ); RandomMatrix( 3, generator=0.0 .. 10.0, outputoptions=[shape=symmetric] ); acer
In Maple, do, ?radian ?convert,radian On your calculator, look in the manual to see if it has both a degree ("deg") and a radian ("rad") mode. If so, try to switch between them and see what happens to the results from the trigonometric function keys. Next, consider what you see Maple return for these examples, sin( evalf(45) ); sin( evalf(45 * 2*Pi/360) ); 45 * 2*Pi/360; There are 2*Pi so-called radians in the 360 degree that form a complete revolution of a circle. This form of expressing angles is used so often by mathematicians that the term radian is often dropped, and one may speak simply of the sine of "2 Pi" or of "one quarter Pi" and so on. The radian term has just become implicit in that phrasing. Lots of scientific and engineering calculators these days can switch between calculating in the two distinct modes. One mode is where the radian term is implicit, and one is where the degree term is implicit. If you ask, "well, isn't the radian a bizarre arbitrary fraction of the whole circular revolution?" then one could answer that the degree is an equally arbitrary and whimsical portion of the whole. The degree is based in astronomy -- that there are close to 360 days in a year, and that 360 has lots of convenient prime factors. The radian actually seems less arbitrary, being based on the angle that sweeps out an arclength along the circumference of exactly one radius of the circle. acer
Could you pass some of the purely numerical scalar parameters (of your 33 total) in just one or two arrays? For example, could you pass all your integer parameters in one array, and all your floating-point parameters in another array? acer
First 307 308 309 Page 309 of 309