www.gusucode.com > robotics 案例源码程序 matlab代码 > robotics/flipString.m

    
% Copyright 2015 The MathWorks, Inc.

function [resp] = flipString(~,req,resp)
% FLIPSTRING Reverses the order of a string in REQ and returns it in RESP.
resp.Str = fliplr(req.Str);
end