views:

258

answers:

2

I'm curious where to find a complete description of FEATURE function? Which arguments it accepts? No documentation was found. I heard only about memstats and getpid. Anything else?

>> which feature
built-in (undocumented)
+1  A: 

This MathWorks product support page lists a few other ways FEATURE can be used under this section about tools for measuring memory usage:

feature dumpmem
feature processmem

Aside from that, I've only been able to find out that it takes up to 2 inputs and returns 1 output:

>> nargin(@feature)

ans =

     2

>> nargout(@feature)

ans =

     1
gnovice
+5  A: 
Yair Altman
@Yair, thanks a lot for the answer. I hoped you will see this question. I actually looked on your web site and didn't find any information on feature function. Would be cool to see an article there.
yuk
this post is really awesome, +10 if I could!
Mikhail
The only thing I don't understand is **why only 4 votes**?
yuk

related questions