What is the GUI version for emlc(or emlmex) in linux 2009b version

I know newer versons of linux matlab have coder as GUI which seems not availabe in linux 2009b. So am I corrct on this, that, there is no GUI for emlc(or emlmex) in linux 2009b version ? Thanks.

2 件のコメント

Kaustubha Govind
Kaustubha Govind 2013 年 6 月 25 日
My guess is that the Coder GUI was introduced in R2011a or R2011b, but I'll leave the question unanswered so someone with more knowledge can attempt it.
R
R 2013 年 6 月 25 日
Thanks. The problem for me is with the linux matlab 2009b I am using, specifically with the emlc(or emlmex). Basically I want to create MEX functions from .m functions. I know I need to specifiy the class, size... etc for the inputs. For my case, I need to specify one input to be a column vector of variable size in double class. That is, this input vector can change in length and theoretically does not have an upper bound. In the GUI version I would just use :inf. But, how do I do that in command line ?

回答 (1 件)

Fred Smith
Fred Smith 2013 年 6 月 25 日

0 投票

The GUI was introduced in R2011a.

2 件のコメント

R
R 2013 年 6 月 25 日
Thanks. The problem for me is with the linux matlab 2009b I am using, specifically with the emlc(or emlmex). Basically I want to create MEX functions from .m functions. I know I need to specifiy the class, size... etc for the inputs. For my case, I need to specify one input to be a column vector of variable size in double class. That is, this input vector can change in length and theoretically does not have an upper bound. In the GUI version I would just use :inf. But, how do I do that in command line ?
Ryan Livingston
Ryan Livingston 2013 年 6 月 25 日
Have a look at
doc emlcoder.egs
to specify arguments on the command line. You can do something like:
ex = emlcoder.egs(zeros(3,2), [1000, 1234], [1 1])
and pass that to emlc:
emlc foo.m -eg ex -report
to specify that the input of foo.m is a double matrix with dimensions
:1000-by-:1234
Unfortunately, I don't believe the ability to use unbounded variable sizing was available in R2009b.

この質問は閉じられています。

製品

タグ

質問済み:

R
R
2013 年 6 月 24 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by