Carl Love

Carl Love

28070 Reputation

25 Badges

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

MaplePrimes Activity


These are replies submitted by Carl Love

Do you have a numeric value for Pr?

Do you have any initial or boundary conditions? You'll need eight.

@bastorer 

It should work the way that you describe. But if Array2:= Copy(Array1) does not give an error message, then you can't be using ArrayTools:-Copy. Can you duplicate the situation?

@Preben Alsholm That works!

@bastorer

Array2:= Copy(Array1);

is not valid syntax for ArrayTools:-Copy. You must have another package loaded that has a Copy command.

@henrylyl The file link works now.

@Preben Alsholm It doesn't work recursively. Example:

restart:
Array1:= Array([Array([1, 2]), Array([3, 4])]):
Array2:= copy(Array1):
Array1[1][1]:= 11:
Array1;
Array2;
              

That was asked and answered 10 days ago, probably by a classmate of yours. See here.

@Markiyan Hirnyk 

I see your point. I wonder why the presence of r with no assumptions makes Maple think that it knows the integral.

@henrylyl File didn't attach. Try uploading again please.

@Markiyan Hirnyk Just plain integrate it:

int(BesselJ(2, r*k)*BesselJ(1, 1500*k), k= 0..infinity);

                                                0

@Markiyan Hirnyk Thanks. I got all files from Christopher's attached zip file.

Please supply (as an attached worksheet) the complete code that you used to read in the data. And please also attach the data files.

The worksheet that you display in your Question is not exactly the same as the one attached to the Question. For example, the displayed one defines a function TS1, but in the attached it is TS[1]. Please attach the most recent copy of the worksheet.

@Thomas Richard 

There are two problems with using interface(displayprecision), one big and one small. The small problem is that every float is shown to that number of decimal places even if that means adding extra zeros. That's just ugly. Example:

A:= < < .1, .2 > | <.3 , .4> >;

The big problem is that it actually changes the number of decimal places to which a result is shown, not its precision. Example:

A^18;

So there is really only one digit of precision in second column, and zero digits of precision in the first column.

 

 

First 557 558 559 560 561 562 563 Last Page 559 of 709