The numerics tag has no wiki summary.
0
votes
1answer
48 views
Convertion of textbox value to single adds extra precision in C#
While converting value of a textbox to Convert.ToSingle() adds some extra precision for values like 2.7 to 2.7999999523162842. I don't want any rounding of this value because I have to store the exact ...
1
vote
2answers
102 views
Why are the elements of the matrix and vector types in the F# Powerpack mutable?
F# is often promoted as a functional language where data is immutable by default, however the elements of the matrix and vector types in the F# Powerpack are mutable. Why is this?
Furthermore, for ...
0
votes
0answers
68 views
GNU MP BigInt returns wrong results in ModPow method
I'm using the high-performance C++ GNU MP BigNum lib in C# with Emil's wrapper for some arbitrary-precision integer arithmetic. However the ModPow function is returning incorrect results, results that ...
1
vote
0answers
76 views
How to implement a BigRational power method
I'm usning the BCL Codeplex implementation of BigRational, however it doesn't seem to have a Pow method that can take two BigRational, only one that takes a BigRational and a BigInteger. I'd write one ...
-2
votes
1answer
85 views
some files are missing! using Math.net numerics 2.4.0
I'm using Math.Net numerics ver 2.4.0 in my C# project, winform and after running the project and doing some parts it says:
find a source:ManagedLinearAlgebraProvider.Double
original location: ...
2
votes
4answers
146 views
What numerical optimizers can operate with only gradients, and no explicit value of the objective?
I have an optimization problem that involves minimizing a function whose gradient I know, but the actual value of objective function at any point is unknown.
I'd like to optimize the function using ...
0
votes
6answers
103 views
Pass function as static class for fast numerics in Java
I want to make some numerical computations in java, and to make operation really modular, I want pass functions as parameters of other functions. I was searching and normally it is done in java using ...
1
vote
3answers
260 views
How do I speed up C# numeric code
I have a C# application that calls a Fortran DLL to do numeric calculations. It has been determined that the DLL call is at least 10x slower than calling the same calculation from a Fortran console ...
1
vote
1answer
57 views
Java matrices and numerics
So I just started doing numeric methods in Java;
// I have a matrix class that has get, set methods for creating matrices; have used those in the method below.
// The method below computes a Matrix ...
0
votes
1answer
21 views
Deduce a unique number from number
I work on the tree where each node has N children.
In my case each node has a unique identifier. i want to deduce an identifier of father node from the child identifier.
So, we can add an ...
2
votes
2answers
347 views
c# Mathnet Numerics — get index of non-zero sparse matrix elements
I want to create a custom optimized matrix operation (a smart kronecker product based on what I know about the sparse matrices i'm using) using MathNet.numerics for csharp.
Is there an accessor to ...
4
votes
1answer
817 views
Cross Product using Math.Net Numerics with C#
I have two vectors MathNet.Numerics.LinearAlgebra.Generic.Vector<double>, like the following:
Vector<double> v1 = new DenseVector(new double[] { 1, 2, 3 });
Vector<double> v2 = ...
0
votes
3answers
137 views
What is a clever bounding box for a 3D monte carlo integration?
For a project, I need to calculate the overlap volume of two overlapping ellipsoids in 3D. The method itself isn't a problem: I'm basically picking random points within a bounding box and checking ...
1
vote
3answers
260 views
Is it possible to deploy a WebRole on Azure with Cloud Numerics used for computation?
Is it possible to use Code Numerics on Azure just for some computation like standard deviation and so on, not using its distributed abilities and bypassing HPC? I am testing an MVC Web Role with some ...
5
votes
4answers
2k views
Mean value and standard deviation of a very huge data set
I am wondering if there is an algorithm that calculates the mean value and standard deviation of an unbound data set.
for example, I am monitoring an measurement value, say, electric current. I ...
2
votes
1answer
650 views
Is there a BigFloat class in C#?
System.Numerics.BigInteger lets you multiply large integers together, but is there anything of the same type for floating point numbers? If not, is there a free library I can use?
//this but with ...
5
votes
4answers
388 views
Numerical Integration with c++ on a given mesh with fixed constant discretisation
I have the following problem:
My c++ code can compute two functions
f1(i1,i2,i3,i4)
f2(j1,j2)
for every set of {i1,i2,i3,i4} I get some value of f1 and for every set of {j1,j2} I get some value of ...
10
votes
4answers
584 views
Doing efficient Numerics in Haskell
I was inspired by this post called "Only fast languages are interesting" to look at the problem he suggests (sum'ing a couple of million numbers from a vector) in Haskell and compare to his results.
...
0
votes
2answers
56 views
C Input only decimals
I'm trying to restrict the input to only numerics in a simple C application however I get a warning. I suspect it's to do with the following segment. Is version one the proper way of doing things? ...
1
vote
0answers
230 views
Visual Studio 2010 - .Net Framework 4 Console Application
Basically I have added the System.Numerics reference to my project, and have added it to my using statements as below:
However, I am getting the following error:
The type or namespace name ...
9
votes
1answer
330 views
Library function capabilities of Mathematica
I am trying to use CUSP as an external linear solver for Mathematica to use the power of the GPU.
Here is the CUSP Project webpage. I am asking for some suggestion how we can integrate CUSP with ...
0
votes
2answers
163 views
Java resources to do number crunching?
What are the best resources on learning 'number crunching' using Java ? I am referring to things like correct methods of decimal number processing , best practices , API , notable idioms for ...
6
votes
6answers
556 views
Take the average of two signed numbers in C
Let us say we have x and y and both are signed integers in C, how do we find the most accurate mean value between the two?
I would prefer a solution that does not take advantage of any ...
3
votes
3answers
1k views
byte[] to unsigned BigInteger?
Motivation:
I would like to convert hashes (MD5/SHA1 etc) into decimal integers for the purpose of making barcodes in Code128C.
For simplicity, I prefer all the resulting (large) numbers to be ...
1
vote
6answers
303 views
Using Decimal or Hexadecimal Bases in .NET
Good morning, afternoon or night,
Forewarning: I know that this may sound like I am trying to do premature optimization, but I assure you I am not. That being, please answer this question if you ...
0
votes
1answer
846 views
matlab cell2mat( … ) function with cell array having a bunch of sparse matrices overflows memory unexpectedly
I get strange behavior with respect to memory with Matlab and the cell2mat() function...
what I would like to do is:
cell_array_outer = cell(1,N)
parfor k = 1:N
cell_array_inner = cell(1,M);
...
3
votes
1answer
451 views
Public Domain or No Binary Attribution FFT Lib?
I'm looking for an FFT library to translate into the D programming language for inclusion either in a library that I'm working on or (better yet) in the standard library. I need a fairly simple FFT ...
21
votes
1answer
1k views
What's the future of std::valarray look like?
Up until fairly recently I hadn't been keeping up with the C++11 deliberations. As I try to become more familiar with it and the issues being worked, I came across this site which seems to be ...
1
vote
2answers
247 views
Polymorphic Numerics on .Net and In C#
It's a real shame that in .Net there is no polymorphism for numbers, i.e. no INumeric interface that unifies the different kinds of numerical types such as bool, byte, uint, int, etc. In the extreme ...
1
vote
4answers
623 views
C++, is linking order standardized?
On my linux box, I have 2 libraries:
libfoo1.a and libfoo2.a
and they both contain an implementation of
void foo(int)
and my main program calls foo:
int main() { foo(1); return 0; }
I ...
