Re: [sc-dev] Include file error

2010-07-19 Thread rashi dhing
How it works is that the formula contains the range that will be populated with the result and only those cells of the range are filled with the result. So the issue of overwriting previous content does not apply here as only empty ranges are selected !! Rashi On Mon, Jul 19, 2010 at 7:14 PM, Nik

Re: [sc-dev] Include file error

2010-07-19 Thread Niklas Nebel
On 07/19/10 15:24, rashi dhing wrote: I've defined a class which I call the ScDeductive in sc/source/ui/deductive. I have defined a function "StartEval" which evaluates the clause( formula ) and returns an array as a result. This function is called from "ScInputHandler::DataChanged" . I enter the

Re: [sc-dev] Include file error

2010-07-19 Thread rashi dhing
I've defined a class which I call the ScDeductive in sc/source/ui/deductive. I have defined a function "StartEval" which evaluates the clause( formula ) and returns an array as a result. This function is called from "ScInputHandler::DataChanged" . I enter the formula in a cell but I would like to d

Re: [sc-dev] Decision about Bessel-functions needed

2010-07-19 Thread Regina Henschel
Hi Eike, Eike Rathke schrieb: Hi Regina, On Thursday, 2010-05-20 21:40:02 +0200, Regina Henschel wrote: the Bessel-functions have some accuracy problems, see issues 31656, 40309, and 43040. I have written patches to fix these bugs. They have lain about for nearly 10 month now. I suggest to in

Re: [sc-dev] Include file error

2010-07-19 Thread Niklas Nebel
On 07/19/10 12:26, rashi dhing wrote: Hi Niklas, I have defined a formula that contains deductive clauses which follow a different grammar and I have already written the evaluation function, the result of which is a matrix. I was thinking I could just call ScInterpreter::PushMatrix which would pr

Re: [sc-dev] Include file error

2010-07-19 Thread rashi dhing
Hi Niklas, I have defined a formula that contains deductive clauses which follow a different grammar and I have already written the evaluation function, the result of which is a matrix. I was thinking I could just call ScInterpreter::PushMatrix which would print the result but again, my function re

Re: [sc-dev] Include file error

2010-07-19 Thread Niklas Nebel
On 07/19/10 11:54, rashi dhing wrote: Thanks Niklas& Eike. So if I have understood correctly, I need to add my operation to the list of functions (add,max etc.) so that when I call the ScFormulaCell::Interpret, the formula gets evaluated according to my function. But that requires an opcode, whi

Re: [sc-dev] Include file error

2010-07-19 Thread rashi dhing
Thanks Niklas & Eike. So if I have understood correctly, I need to add my operation to the list of functions (add,max etc.) so that when I call the ScFormulaCell::Interpret, the formula gets evaluated according to my function. But that requires an opcode, which I will have to generate ? Also, my fo