We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec3602 commit 3bb4ac7Copy full SHA for 3bb4ac7
stl/stllog.m
@@ -1,4 +1,11 @@
1
function stllog(varargin)
2
+ %stl.log Send formatted string to log
3
+ %
4
+ % stl.log(fmt, args...) has printf() like semantics and sends the formatted
5
+ % string to the log where it is displayed with date, time and thread name.
6
7
+ % NOTES::
8
+ % - String arguments must be wrapped with cstring, eg. cstring('hello')
9
coder.cinclude('stl.h');
10
11
coder.ceval('stl_log', cstring(varargin{1}), varargin{2:end} ); % evaluate the C function
0 commit comments