|
[Date Index]
[Thread Index]
[Author Index]
Re: Can you type a command and have Mathematica show the parameters?
- To: mathgroup at smc.vnet.net
- Subject: [mg56200] Re: Can you type a command and have Mathematica show the parameters?
- From: "plizak" <plizak at gmail.com>
- Date: Tue, 19 Apr 2005 04:54:57 -0400 (EDT)
- References: <d3o0hu$bo3$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Perhaps you could use the ? option.
For example you want to find out what are the paramters for
CholeskyDecomposition. Simply type:
? CholeskyDecomposition <shift+enter>
and it returns
CholeskyDecomposition[m] gives the Cholesky decomposition of a matrix
m. More...
Click on more and it goes to the help.
You can also do "? MyFunction" if you have already declared a function.
For example if you create MyFunction as
MyFunction[Avar_, Bvar_, Cvar] := Avar*Bvar/Cvar
and then type
? MyFunction
It will return
MyFunction
[Avar_, Bvar_, Cvar] := Avar*Bvar/Cvar
Prev by Date:
Thanks! Re: Integrate is driving me crazy, please help!
Next by Date:
(x-y) DiracDelta[x-y] does not simplify to 0
Previous by thread:
Re: Can you type a command and have Mathematica show the parameters?
Next by thread:
Approximating the function from its plot
|