| Author |
Comment/Response |
S. Saralamba
|
07/03/08 04:12am
What do you mean that "I want to save c"?
Do you want to export the c values to a file or just want to keep the values into a list?
I wonder how you get the c values. Is it by your guess or from the random?
If a c value is from the random and you want to keep it after you have done something with NIntegrate, you can put it into a list by using Append or AppendTo.
yourC={};
(*** after done something ***)
AppendTo[yourC,c]
If you want to save the c values in a file, just use Export.
Export["yourfile.txt",yourC]
URL: , |
|