MATLAB Function Reference |
Syntax
rc = ddepoke(channel,'item
',data) rc = ddepoke(channel,'item
',data,format) rc = ddepoke(channel,'item
',data,format,timeout)
Description
ddepoke
sends data to an application via an established DDE conversation. ddepoke
formats the data matrix as follows before sending it to the server application:
If you omit optional arguments that are not at the end of the argument list, you must substitute the empty matrix for the missing argument(s).
If successful, ddepoke
returns 1 in variable, rc
. Otherwise it returns 0.
Arguments
Examples
Assume that a conversation channel with Excel has previously been established with ddeinit
. To send a 5-by-5 identity matrix to Excel, placing the data in Row 1, Column 1 through Row 5, Column 5:
rc = ddepoke(channel, 'r1c1:r5c5', eye(5));
See Also
ddeadv
, ddeexec
, ddeinit
, ddereq
, ddeterm
, ddeunadv
ddeinit | ddereq |