how run .c program in matlab
조회 수: 39 (최근 30일)
이전 댓글 표시
if i have program print.c
#include<stdio.h>
#include<conio.h>
main()
{
printf('hello')
getchar()
}
how i can run this code in MATLAB
댓글 수: 0
채택된 답변
Shashank Prasanna
2013년 1월 29일
If you want to call your C function from within MATLAB you have to create a MEX file. Which mean you will have to modify your C code with the following guidelines:
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!