MathGroup Archive 2007

[Date Index] [Thread Index] [Author Index]

Search the Archive

simple question

  • To: mathgroup at smc.vnet.net
  • Subject: [mg77099] simple question
  • From: dimitris <dimmechan at yahoo.com>
  • Date: Sun, 3 Jun 2007 06:15:18 -0400 (EDT)

Hi.

I have a simple question but I can't find any relevant.
Suppose a user-defined function with comments [that is (*...*)
structures]
added.

Let for example

\!\(Nint[g_ (*function*) , n_Integer, {x_, a_, b_} (*
      the\ variable\ and\ the\ limits\
        of\ integration*) , opts___ (*set\ possible\ options\ for\ \
NIntegrate*) ] := NIntegrate[Evaluate[g\^Range[n]], {x, a, b}, opts]\)

The code has been copy/paste in StandardForm.
Let me convert it to InputForm. After selecting the cell
and press Shift+Ctrl+I, I get

In[1]:=
Nint[g_, n_Integer, {x_, a_, b_}, opts___] :=
NIntegrate[Evaluate[g^Range[n]], {x, a, b}, opts]

That is, the comments during the conversion have been lost.

Any ideas to "fix" this situation?

Dimitris



  • Prev by Date: general
  • Next by Date: Re: pure function to generate a list of integrals
  • Previous by thread: general
  • Next by thread: RE: simple question