Displaying 5 results from an estimated 5 matches for "mlevin".
Did you mean:
levin
2024 Jun 11
2
Integration of functions with a vector argument
...th a vector argument x. At the very least, I haven't seen any good examples of this being done.
Any suggestions?
Yours sincerely,
Michael
Michael Levine
Associate Professor, Statistics
Department of Statistics
Purdue University
250 North University Street
West Lafayette, IN 47907 USA
email: mlevins at purdue.edu
Phone: +1-765-496-7571
Fax: +1-765-494-0558
URL: www.stat.purdue.edu/~mlevins
[[alternative HTML version deleted]]
2024 Jun 12
2
Integration of functions with a vector argument
? Tue, 11 Jun 2024 18:44:08 +0000
"Levine, Michael" <mlevins at purdue.edu> ?????:
> Let us say we have a function
>
> F <- function(x){ body of the function}
>
> Where x is, in general, a d by 1 vector with d>1. Now I want to
> integrate out some of the coordinates of x, e.g. x[1] or x[2] or both
> of them etc. I'm wel...
2010 Sep 25
5
Problem with Wine on a Mac
...4d40-9304-1da10ae9147c} not registered
fixme:ole:CoGetClassObject CLSCTX_REMOTE_SERVER not supported
err:ole:CoGetClassObject no class object {6e4fcb12-510a-4d40-9304-1da10ae9147c} could be created for context 0x17
But, now I can't seem to run it - it says
wine: Bad EXE format for Z:\Users\mlevin\Desktop\Kindle For PC.desktop
how do I actually run the thing?
thanks,
Mike
2004 Feb 20
1
Confidence intervals for logistic regression
...likelihood ratio and/or score-based confidence intervals?
Yours,
Michael
~~~~~~~~~~~~~~~~~~~~~
Michael Levine
Assistant Professor
Department of Statistics
School of Arts and Sciences
Purdue University
Office: MATH 438
150 N. University Street
West Lafayette, IN 47907
phone (765)496-7571
e-mail: mlevins@stat.purdue.edu
~~~~~~~~~~~~~~~~~~~~
[[alternative HTML version deleted]]
2024 Jun 13
1
Integration of functions with a vector argument
? Wed, 12 Jun 2024 23:42:18 +0000
"Levine, Michael" <mlevins at purdue.edu> ?????:
> f.int1 <- function(x,y) {Vectorize (function(y) f(c(x,y),H=H,j=j))}
Vectorize returns a callable function(y), so wrapping it in a
function(x,y) will not work. Since you'd like to integrate over y, we
can perform the same transformation manually using vapply:...