| 
 | 
 | 
# Introduction
 | 
 | 
 | 
 | 
This command will send output text to AnyWave. Typically, the messages will appear in the debug log window connected to the plugin.   
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
# Usage
 | 
 | 
 | 
 | 
````matlab
 | 
 | 
 | 
 | 
function main(varargin)
 | 
 | 
 | 
 | 
anywave('init', varargin);
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
anywave('send_message', 'Hello AnyWave');
 | 
 | 
 | 
 | 
````
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
# Tip
 | 
 | 
 | 
 | 
You can write a wrapper function in your plugin code to make this feature much simpler:   
 | 
 | 
 | 
 | 
````matlab
 | 
 | 
 | 
 | 
function print_anywave(message)
 | 
 | 
 | 
 | 
anywave('send_message', message);
 | 
 | 
 | 
 | 
```` | 
 | 
 | 
 | 
\ No newline at end of file |