The evaluate tag has no wiki summary.
0
votes
2answers
57 views
When showing a formula I need to see the text horizontal to the value being used…in Excel
For example I have in one row pretax income and tax paid, then to the right I have a number representing them, say (c5)10 and (c7)13. Then below I have a ration "effective tax rate" and to the right ...
3
votes
1answer
728 views
How to call constructor in gdb for pretty-printers
When debugging with GDB I would like to set a convenience variable to a newly constructed value.
I am programming using the Qt framework, so i would like to create a QString, but this is irrelevant ...
1
vote
1answer
63 views
Eval string for wordpress “in_category” workaround outside the loop
In Wordpress you can“t use "in_category" outside the loop, so I created a function that gives me all the categories my article is in and create a "is_category" if statement out of it.
I put my ...
1
vote
1answer
262 views
xPath Evaluate vs XPathNodeIterator
I am searching the fastest way to count some tags in a huge xml-file (120MB)
long Quantity;
XPathDocument xDocData = new XPathDocument(str_File_path);
XPathNavigator xNavData = ...
1
vote
1answer
436 views
ANTLR expressions rewrite intermediate tree
For expressions like 3+4 I would like to use the value 7 in an intermediate representation tree.
I cannot work out how to get the returns value into a rewrite rule.
expression returns [int v]:
etc.
...
0
votes
1answer
30 views
How to evaluate LaTeX formula in javascript?
I have javascipt string in LaTeX format. For example:
\frac{y^2}{2}x-\frac{2}{\sqrt{y}}+2(x-y)^2
I want to be able evaluate it with defined variables. Does anyone know framework or lib for this ...
0
votes
1answer
27 views
Retrieving numerical result from function
I am working on a code in maxima and in it I define a function.
Ucr(y):=offset+c1[21]+2*sum(realpart(c1[m+20])*cos(2*%pi*(m-1)*y/dp) - imagpart(c1[m+20])*sin(2*%pi*(m-1)*y/dp),m,2,nmax+1);
However ...
0
votes
1answer
121 views
batch: filenames with variables evaluated inside a for loop
File names and directories containing variables are being evaluated indside procedures. How do I make batch store the file's name as a variable without evaluating it?
EG: my path is:
"C:\Rare\Names ...
0
votes
1answer
277 views
How do i use JavaScript evaluate() in an Android WebView?
I want to create a calculator which is able to evaluate Strings like 3+(2-1)*2 or (28.4/2-1.5)+(4-2). I searched the web and found the possibility to use a WebView with JavaScript enabled which can ...
0
votes
1answer
46 views
Plotting Positional Data to show smoothness
Hi i have made a networked game (basically a prototype) which implements different smoothing alogorithms such as interpolation and extrapolations etc, I have positional data which can be printed out ...
1
vote
0answers
94 views
evaluate a TypeAs expression
I'm trying to evaluate an expression to check if the output of the evaluation is null.
My code looks like this:
public class ObjectHelper<TType>
{
public static bool PathHasNull(object ...
0
votes
0answers
54 views
weka: how to get class name from testing single instance
i want to make a single test for single instance
i use j48 in FilteredClassifier like this:
Remove rm = new Remove();
rm.setAttributeIndices("1"); // remove 1st attribute
// classifier
J48 j48 = new ...
0
votes
0answers
20 views
tar pre-run to evaluate expected size or amount of files
The problem:
I have a back-end process that at some point he collect and build a big tar file.
This tar receive few directories and an exclude files.
the process can take up to few minutes and i ...
0
votes
0answers
37 views
VBA - arrayformula to a range stored as array variable
I couldn't find the way to get out of this problem, so please guys give me a hand;)
I have to apply a formula array to dynamic ranges in my spreadsheets, which for fixed size ranges works fine using:
...
0
votes
0answers
16 views
evaluate range into variable - formulaarray vs formula
Hi friends of the forum ,
I am searching the way to evaluate a formula that includes a range into a variable as a "normal" formula and not as a formulaarray, does anyone know the trick for it ? here ...
0
votes
0answers
51 views
Java ScriptEngine adds decimal point to numeric output regardless of numeric input type
I'm working with javax.script.ScriptEngine (and ScriptEngineManager, ScriptException, etc.). I've built an application, part of which must be able to evaluate mathematical (and sometimes other) ...
0
votes
0answers
43 views
Strange behavior from Evaluate[] in Mathematica
So I'm using Mathematica to numerically solve a series of coupled ODEs to get some parameters along a curve. NDSolve outputs InterpolationFunctions, which plot just fine and yield the correct solution ...
0
votes
0answers
131 views
Interpreting Results of InfoGain Attribute Evaluator in WEKA
I have run the InfoGain+Ranker algorithms in the Feature selection tab of the Weka in order to determine the significance of each individual variable that contributed to classification results.
This ...
0
votes
0answers
41 views
javascript re-evaluate xpath return
I'm trying to evaluate XPath from the context of the nodes returned by an initial absolute XPath evaluation. Can anyone help?
var test = document.evaluate("//div[@style='asdf']",
document,
null,
...
0
votes
0answers
610 views
Using recursion to evaluate subexpressions
I have implemented code which does the following:
String infixToPostfix(String expr) - takes an expression WITHOUT parentheses and returns the postfix equivalent
float evaluate(String postfix) - ...
