Tagged Questions
1
vote
1answer
69 views
Is there any existing library that has matlab functions implemented in C/CPP/Obj-C?
I am using an algorithm that is only implemented in Matlab.
However I need to run it with gcc, once I do not have the needed Matlab licenses neither for server or for porting the code.
Sp, I'm ...
1
vote
1answer
673 views
Export a neural network trained with MATLAB in other programming languages
I trained a neural network using the MATLAB Neural Network Toolbox, and in particular using the command nprtool, which provides a simple GUI to use the toolbox features, and to export a net object ...
1
vote
3answers
193 views
Porting inversion of 1000x1000 matrix of complex numbers from Matlab to C++
Matlab code:
invD = inv(D);
Dew=2*invD-E;
D is 1000x1000 matrix of complex numbers. It inverts in 0,5 sec or less.
I tried several ways of porting this code to C++, using different approaches, ...
3
votes
1answer
140 views
C++ equivalent of Matlab Abstract for class properties
Short version:
Consider the following pseudo-code:
class Foo {
private:
abstract type myVar;
} // This class is abstract
How would you implement this behaviour in standard C++?
Long ...
5
votes
1answer
300 views
Port MATLAB bounding ellipsoid code to Python
MATLAB code exists to find the so-called "minimum volume enclosing ellipsoid" (e.g. here, also here). I'll paste the relevant part for convenience:
function [A , c] = MinVolEllipse(P, tolerance)
[d ...
0
votes
2answers
2k views
My Particle Swarm Optimization code generates different answers in C++ and MATLAB
I have written a global version of Particle Swarm Optimization algorithm in C++.
I tried to write it exactly as same as my MATLAB PSO code that have written before, but this code generates different ...
0
votes
2answers
510 views
matlab to python code conversion
I am trying to convert a matlab code to python due to lack of matlab. I will be grateful if you kindly tell me the python equivalents of the following functions which I could not find:
...
1
vote
2answers
140 views
Translate Matlab code to Numpy
I just started to translate a Matlab code to numpy, how can I write the following code in python
InputVec = [2,3,4]
InputVariable(1,:)=InputVec;
-3
votes
1answer
119 views
How do I write this matlab example to python
I am trying to convert this to python. I just really need help with 1 line. I nevered learn matlab
function [xc,yc,R,a] = circfit(x,y)
%
% [xc yx R] = circfit(x,y)
%
% fits a circle in x,y ...
0
votes
1answer
193 views
MATLAB to C++ Programming Help Please
I have the MATLAB Code created but I am wondering if I can convert this MATLAB Code to C++ in a simplistic form.
%# Plotting T coordinates which represent the temperature
%# in the vertical
...
0
votes
2answers
191 views
How is it possible to take an exponential of a matrix in MATLAB?
I have a MATLAB code which I have to convert to C language. According to the MATLAB code,
n1 = 11; x1 = randn(2,n1) + repmat([-1 1]’,1,n1);
w = [0 0]’;
here acccording to my calculation, the ...
1
vote
1answer
167 views
Porting matlab structure arrays to C#
I have a bunch structure arrays like listed below that Id like to port over to C#. This is a part of a big project. How can I easily achieve something like this in C# ? Such as grouping variables ? I ...
5
votes
3answers
3k views
Translate matlab to python/numpy
I am looking for an automatic code translator for Matlab to Python.
I downloaded and installed LiberMate but it is not documented anywhere and I wasn't able to make it work.
Has anybody dealt with ...
3
votes
2answers
3k views
Porting matlab functions to scilab. How to use symbolic?
I'm porting some matlab functions to scilab. The cool thing is that there is a conversion toolbox that make things very easy.
The problem is I did not find the counter part to the syms function, and ...
