Click here to Skip to main content
15,896,063 members
Home / Discussions / Algorithms
   

Algorithms

 
GeneralRe: suggest me an algorithm Pin
PIEBALDconsult21-Nov-08 5:29
mvePIEBALDconsult21-Nov-08 5:29 
GeneralRe: suggest me an algorithm Pin
CPallini22-Nov-08 21:00
mveCPallini22-Nov-08 21:00 
QuestionI'm sorry if this sounds like a weird question... Pin
mhtirogla18-Sep-08 20:53
mhtirogla18-Sep-08 20:53 
AnswerRe: I'm sorry if this sounds like a weird question... Pin
73Zeppelin18-Sep-08 21:02
73Zeppelin18-Sep-08 21:02 
QuestionInterpX function limitation (within Interp32.xll Excel addin) [modified] Pin
M.Slipper18-Sep-08 7:04
M.Slipper18-Sep-08 7:04 
AnswerRe: InterpX function limitation (within Interp32.xll Excel addin) Pin
73Zeppelin18-Sep-08 12:10
73Zeppelin18-Sep-08 12:10 
GeneralRe: InterpX function limitation (within Interp32.xll Excel addin) Pin
M.Slipper18-Sep-08 14:49
M.Slipper18-Sep-08 14:49 
GeneralRe: InterpX function limitation (within Interp32.xll Excel addin) Pin
73Zeppelin18-Sep-08 20:51
73Zeppelin18-Sep-08 20:51 
M.Slipper wrote:
The range of data consists of two columns, with a known value that lies within one column. The function should determine the interpolated value within the other column.


That's extrapolation. Interpolation fills in missing values and you thus need a scenario similar to the following:

x1(known) | x(unknown) | x2(known)

So you need values on either side of the unknown value which is what I already explained. If in earlier versions of Excel there was a column limitation, your .xll would be coded to be aware that IX was the ultimate column possible and thus would not consider columns beyond IX - most likely the reason for the #VALUE error and the reason you continue to get the error even in spreadsheets (e.g. Excel 2007) that no longer have this limitation.

If excel can't handle it (and really, why are you trying to do 5,000,000 calculations using Excel??) write a c++ function. Then dump the data back into excel by calling the COM server. The other thing you might want to think about is how sparse is your data that you have to interpolate 5,000,000 times?


...that mortally intolerable truth; that all deep, earnest thinking is but the intrepid effort of the soul to keep the open independence of her sea; while the wildest winds of heaven and earth conspire to cast her on the treacherous, slavish shore.


GeneralRe: InterpX function limitation (within Interp32.xll Excel addin) Pin
M.Slipper19-Sep-08 7:58
M.Slipper19-Sep-08 7:58 
GeneralRe: InterpX function limitation (within Interp32.xll Excel addin) Pin
73Zeppelin19-Sep-08 8:40
73Zeppelin19-Sep-08 8:40 
GeneralRe: InterpX function limitation (within Interp32.xll Excel addin) Pin
M.Slipper19-Sep-08 8:51
M.Slipper19-Sep-08 8:51 
GeneralRe: InterpX function limitation (within Interp32.xll Excel addin) Pin
73Zeppelin19-Sep-08 8:58
73Zeppelin19-Sep-08 8:58 
GeneralRe: InterpX function limitation (within Interp32.xll Excel addin) Pin
M.Slipper19-Sep-08 9:36
M.Slipper19-Sep-08 9:36 
GeneralRe: InterpX function limitation (within Interp32.xll Excel addin) Pin
73Zeppelin21-Sep-08 7:59
73Zeppelin21-Sep-08 7:59 
GeneralRe: InterpX function limitation (within Interp32.xll Excel addin) [modified] Pin
M.Slipper23-Sep-08 11:11
M.Slipper23-Sep-08 11:11 
NewsMath: A Gut Instinct PinPopular
73Zeppelin17-Sep-08 23:55
73Zeppelin17-Sep-08 23:55 
GeneralRe: Math: A Gut Instinct Pin
soap brain18-Sep-08 0:09
soap brain18-Sep-08 0:09 
GeneralRe: Math: A Gut Instinct Pin
73Zeppelin18-Sep-08 1:05
73Zeppelin18-Sep-08 1:05 
GeneralRe: Math: A Gut Instinct Pin
soap brain18-Sep-08 1:21
soap brain18-Sep-08 1:21 
GeneralRe: Math: A Gut Instinct Pin
Paul Conrad18-Sep-08 6:37
professionalPaul Conrad18-Sep-08 6:37 
GeneralRe: Math: A Gut Instinct Pin
73Zeppelin18-Sep-08 21:05
73Zeppelin18-Sep-08 21:05 
GeneralRe: Math: A Gut Instinct Pin
Paul Conrad18-Sep-08 6:35
professionalPaul Conrad18-Sep-08 6:35 
Generalpseudorandom number generator algorithm Pin
niconicx14-Sep-08 5:40
niconicx14-Sep-08 5:40 
GeneralRe: pseudorandom number generator algorithm Pin
Robert.C.Cartaino14-Sep-08 6:05
Robert.C.Cartaino14-Sep-08 6:05 
GeneralRe: pseudorandom number generator algorithm Pin
Tim Craig14-Sep-08 9:31
Tim Craig14-Sep-08 9:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.