how to create C-mex function

2 ビュー (過去 30 日間)
Michal Kvasnicka
Michal Kvasnicka 2013 年 1 月 3 日
How to create suitable mex gateway function coresponduing to the following C function (decimal to binary conversion)?
void deci2bin( int x, int n, double* output){
double *temp;
int i;
temp = (double *)mxMalloc(sizeof(double)*n);
i=0;
while(x>=0 && i<n){
temp[i] = x%2;
i++;
}
for(i=0;i<n;i++)
output[i] = temp[n-1-i];
}
Thanks in advance for any help.
  1 件のコメント
Walter Roberson
Walter Roberson 2013 年 1 月 3 日
Have you considered looking at the source of dec2bin() and removing the char() and the +'0' from the algorithm given there?

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by