Re: How to use a function "Manipulate" to SmoothHistogram3D
- To: mathgroup at smc.vnet.net
- Subject: [mg128784] Re: How to use a function "Manipulate" to SmoothHistogram3D
- From: "Nasser M. Abbasi" <nma at 12000.org>
- Date: Sun, 25 Nov 2012 05:01:11 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
- References: <k8pt2d$ita$1@smc.vnet.net>
- Reply-to: nma at 12000.org
On 11/24/2012 1:30 AM, heliumm.00 at gmail.com wrote: > How to use a function "Manipulate" to SmoothHistogram3D[data[[1]]], I >imported data from Excel. Data is: >{4000., 3.54036*10^-9}, {5000., 5.22417*10^-8}, {5500., 5.63087*10^-8}, >{6000., 6.0201*10^-7}, {6500., 6.55389*10^-7}. > How to animate SmoothHistogram3D? > To use Manipulate, you must have some parameter you want to modify. The expression that Manipulate shows needs to depend on this parameter. You just showed data above. No parameter. So I am not sure what do you need Manipulate to do. What will the slider change? ps. your data is missing being in a list. So it needs an outside {} to make it a list, then just do SmoothHistogram3D[data] --Nasser