python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Do I need to Allocate Memory when using mexGetVariable?
I am getting a variable form my MATLAB workspace via an mexGetVariable. From what I understand, a copy of the variable is made and its pointer is returned when using mexGetVariable.
Would I have to do...
shrimpie
Votes: 0
Answers: 1
Simple mex file crash?
I am learning mex files in matlab. I have written this simple code
#include "mex.h"
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]){
double *outData, *inDa...
MementoMori
Votes: 0
Answers: 1
Does MATLAB R2022a support gfortran 8.x on Linux (as specified by the documentation)?
According to the official documentation, MATLAB R2022a supports gfortan8.x as the Fortran compiler for MEX on Linux.
However, MATLAB R2022a with gfortran 8.3.0 on Ubuntu 20.04 fails to run the followi...
Nuno
Votes: 0
Answers: 0
How to decompile .mexw64
When I used the mexw64 file, I found that the result was not what I expected, so I wondered if I could decomcompile it into a readable file to see if that part was wrong.
However, I did not find a way...

moluzhui
Votes: 0
Answers: 0