MATLAB Emebedded C функция выпуска - PullRequest
0 голосов
/ 26 июня 2018

Привет. Я пытаюсь использовать C-файлы в MATLAB через MEX-файлы, но пока не получилось. Я следовал за учебником, показанным в этой ссылке: https://uk.mathworks.com/videos/integrating-matlab-into-your-cc-product-development-workflow-106742.html Я скачал файлы и работает отлично. Сейчас я пытаюсь написать собственную функцию, и она правильно генерирует MEX-файл, но когда я пытаюсь протестировать функцию, MATLAB выключается. Файлы выглядят следующим образом: enter image description here Кроме того, я проверил следующие возможные причины:

  1. Проверено, что функция в c является правильным типом в этом случае int .
  2. Используйте указатель в коде c вместо просто переменной.
  3. Включить return в функцию c.
  4. Инициализировать опорное значение выходной функции в то есть у = int32 (15);
  5. Включить все заголовки в код c, т. Е.
  6. Пример по ссылке работает отлично, чего мне не хватает?

    код c

         #include <stdio.h>
         int bimi(int* output);
         int bimi(int* output){
            int a = 0;
            output=25;
            return output;
         }
    

Функция в MATLAB

    function y = bimi()  %#codegen
             %coder.updateBuildInfo('addSourceFiles','bm.c');
             y = int32(15);%coder.nullcopy(1);
             coder.updateBuildInfo('addSourceFiles','bimi.c');
             fprintf('Running Custom C Code...\n\n');
             coder.ceval('bimi',coder.ref(y));%this bimi should match with the function name!
    end

скрипт, используемый для сборки MEX-файла

    function build(target)
    %   BUILD is a build function for the Gaussian filter
    %
    %   SYNTAX:     build mex
    %               build lib
    %           
           %   Copyright 2014 The MathWorks, Inc.

        % Entry point function:
        entryPoint = 'bimi';%

        % Configuration object:
        cfg = coder.config(target);

        % Custom source files:
        cfg.CustomSource = 'bimi.c';

        % Generate and Launch Report:
        cfg.GenerateReport = true;
        cfg.LaunchReport = false;

        % Generate Code:
            codegen(entryPoint,'-config', cfg)

    end

тестовый скрипт

    %testing the c code embeded to matlab
    chichi=bimi_mex();

1 Ответ

0 голосов
/ 29 июня 2018

Лучший способ добиться этого - быть очень осторожным с именами файлов и именами функций (это была проблема, простая, простая, но для ее обнаружения требуется время). Посмотрите на последний тест, который я провел, который прекрасно работает:

Файлы:

//bimi.c
#include "bimi.h"

extern void bimi(int* poly, int* polysz, int* output){
    int i;
    int a=*(polysz);
    for(i=0;i<a;i++){
        output[i]=2*poly[i];
    }
}

.

//bimi.h
extern void bimi(int* poly, int* polysz, int* output);

.

//bimifunc.m
function y = bimifunc(poly2, polysz2)  %#codegen
         %coder.updateBuildInfo('addSourceFiles','bm.c');
         y = coder.nullcopy(zeros(1,5,'int32'));%coder.nullcopy(1);
         coder.updateBuildInfo('addSourceFiles','bimi.c');
         fprintf('Running Custom C Code...\n\n');
         coder.ceval('bimi',coder.ref(poly2),coder.ref(polysz2), coder.ref(y));%this bimi should match with the function name!
end

.

//build.m
function build(target)
    % Entry point function:
    entryPoint = 'bimifunc';%

    %Example input
    poly=zeros(1,5, 'int32');
    polysz=int32(length(poly));

    % Configuration object:
    cfg = coder.config(target);

    % Custom source files:
    cfg.CustomSource = 'bimi.c';
    cfg.CustomSourceCode = [ '#include "bimi.h"' ];

    % Generate and Launch Report:
    cfg.GenerateReport = true;
    cfg.LaunchReport = false;

    % Generate Code:
    codegen(entryPoint,'-args', {poly, polysz},'-config', cfg)

end

.

//test.m
%testing the c code embeded to matlab
poly=ones(1,5, 'int32');
polysz=int32(length(poly));

chichi=bimifunc_mex(poly, polysz);
...