Carl Love

Carl Love

28055 Reputation

25 Badges

13 years, 1 days
Himself
Wayland, Massachusetts, United States
My name was formerly Carl Devore.

MaplePrimes Activity


These are replies submitted by Carl Love

@Preben Alsholm 

The add(x, x= myMat[5, 1..-1]) worked in Maple 16.

It's a real shame to need to refer to the 40 in order to get this to work.

@Kitonum 

A single-line verify that works:

verify(abs(x), sqrt(x^2), simplify) assuming x::real;

     true

Why do you consider this situation to be a problem? That's just the way Maple works. There's one GUI process and at least one "kernel" or "server" or "evaluating" process.

@Rouben Rostamian  

Your plotting solution is remarkably simple. Note that if you change the positive `if` target from [H2,y,z] to either [x,y,H1] or [H2,y,H1], it doesn't substantially change the shape of the plot. However, the grid lines on the vertical surface are changed.

@Kitonum Your counting algorithm does not allow for nonpositive _Z6 and _Z7.

This help page may be useful to you: ?worksheet,managing,exportHTML

Regarding converting a whole worksheet to MathML: A worksheet can (and usually does) have content that is not valid expressions. How is that content supposed to translated to MathML?

@Kitonum Yes, I like it better than what I wrote for the first matrix.

If you could direct me to a course website where I could see a syllabus and/or some sample exercises, I may be able to advise you.

@reinhardsiegfried Could you provide details of what you're talking about with 'f1'=x?

@Rouben Rostamian  

In Standard, you can't easily get the legend vertically stacked on the bottom, but you can get it vertically stacked on the side, like this:

plot([x,x^2,x^3], x= -1..1, legend= [x,x^2,x^3], legendstyle= [location= right]);

You can fake vertical stacking on the bottom by making the labels extra long by padding with blanks:

plot([x,x^2,x^3], x= -1..1, legend= map2(nprintf, cat("%a"," "$40), [x,x^2,x^3]));

@reinhardsiegfried 

There are two things that you can do to an Answer: Give it a thumbs up, and select it as the best Answer to your Question. These actions are independent: You can do neither, either, or both.

Please check and confirm your formula. The following part looks highly suspicious to me:

(K1! * K2)!

I suspect that you mean (K1! * K2!).

@nidojan That is not a parametric plot; that is two separate plots. The OP's code as presented in the Question above is already the correct code to produce a parametric plot; there are no more brackets needed. If the OP is still receiving an error message, it is due to some hidden issue such as an invisible control character in the code.

Extracting just the essence of Markiyan's Answer (because I find it hard to read with all the extra information), we have simply

plot(x^2);
ExcelTools:-Export(op([1,1], %), "plot.xls");

What is the point of using Grid:-Seq (or even seq) for a sequence of length 1?

Where do you get the error message? When you call dsolve or when you're filling the Array using Grid:-Seq?

First 488 489 490 491 492 493 494 Last Page 490 of 709