mexa64 to mexw64 file extension
16 次查看(过去 30 天)
显示 更早的评论
Hello guys.
Currently, I run a MATLAB program on Windows OS. But in the coding, there's certain part calling for the MEX file, which is in mexa64 file extension. I know that this file extension is specific for Linux, and I suppose use mexw64 file extension. Below are the part that called the MEX file:
% call FMM mex
gmm_params = struct;
if ~isempty(init_mean) && ~isempty(init_var) && ~isempty(init_coef)
codebook = mexGmmTrainSP(single(feats), params.cluster_count, gmm_params, single(init_mean), single(init_var), single(init_coef));
else
codebook = mexGmmTrainSP(single(feats), params.cluster_count, gmm_params);
end
Hence, this uncompatible file for Windows, make error.
So, can anyone suggest for me the best solution for this problem? Is it possible for me to convert the mexa64 to mexw64?
I'm very appreciate if anyone has the solution for this problem. Thank you.
2 个评论
Da
2020-3-8
Hello, I met the same problem when I used the vgg-fisher toolbox. I tried to complie the file on my Windows but faild, did you complie the mexw64 file successfully? Can you send me the successfully compiled mexw64 file? Thank you so much!
billel nebili
2020-6-21
Hello, I also need the successfully compiled .mexw64 file. If you can, please send it to me. Thank you very much
采纳的回答
Walter Roberson
2019-3-5
You need to recompile the mex source for Windows (or find a copy where it was already done.)
github plsang gmm-fisher appears to have the source code.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Encryption / Cryptography 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!