math.net Questions

1

I'm trying to make my own game engine for learning purposes, but I'm also trying to make something that is optimized and is capable of handling a diverse amount of cross-platform games. That said...
Duley asked 30/9, 2019 at 16:54

1

Even though this post says it should work, if you create an int array of size Int32.MaxValue, it throws an OutOfMemoryException: Array dimensions exceeded supported range. From my testing, it...
Stafani asked 21/4, 2021 at 19:26

3

Solved

Is there function in Math.Net like (MatLab/Octave/numpy)'s linspace() which takes 3 parameters (min, max, length) and creates an vector/array of evenly spaced values between min and max? It is not ...
Stilted asked 11/6, 2013 at 14:13

2

Solved

I have recently started using Mathdotnet Numerics statistical package to do data analysis in c#. I am looking for the cross correlation function. Does Mathdotnet have an API for this? Previously ...
Tallis asked 26/9, 2017 at 6:33

3

I previously used Math.NET Numerics library's Fit.Polynomial method to fit a cubic polynomial on a set of data that could be modeled as a function of one parameter y=f(x). Now I would like to simil...
Rachellerachis asked 26/12, 2013 at 14:49

0

I am evaluating Math.NET Symbolics for use in our application where we want a simple math parser for the user to calculate custom equations from our measurement data. Our data is in the form of Com...

3

Solved

In Matlab we can write the following code to shuffle a matrix: data = data(:, randperm(size(data,2))); there is what I write with Math.NET: let csvfile = @"../UFLDL-tutorial-F#/housing.csv" let...
Ruscio asked 7/11, 2016 at 13:29

2

I'm doing heavy mathematical computations using Math.Net Numerics parallely inside Parallel.For block. When I run code in my local system with 4 cores(2*2), it's using all 4 cores. But when I ru...

4

Solved

I've recently begun using MathNet to implement our linear algebra, however I'm having some trouble translation MATLAB functions to MathNet. In MATLAB I often use the simple solve using the backsla...
Praseodymium asked 9/2, 2012 at 9:22

1

Math.Net 3.7.0 Release Notes on nuget mention a CUDA native provider. Control.UseNativeCUDA(); throws a DllNotFoundException for MathNet.Numerics.CUDA.dll. For the MKL-provider i need to install...
Irreducible asked 23/7, 2015 at 13:38

1

Solved

I want to solve equations like, (4-x)*2 = (y-1)*10 + 2 x = y*2 + 1 The equations are available in string form. Is there a way to express a equation in mathdotnet? I can only find ways to write ex...
Duodenary asked 4/7, 2015 at 17:31

2

Solved

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 = ...
Coon asked 1/8, 2012 at 12:53

1

Solved

I'm trying to write a debugger type proxy/surrogate for matrices and vectors in Math.NET Numerics, so the debugger shows more useful information (also in F# FSI). The type hierarchy is as follows: ...
Menu asked 29/3, 2013 at 16:55

1

Solved

I am not certain there is one correct answer to the question, but here we go. While numerous numerical problems can be stated in a linear algebra form, it seems from my limited experience that ther...
Bituminous asked 22/3, 2013 at 3:20
1

© 2022 - 2024 — McMap. All rights reserved.