Skip to content

Commit

Permalink
JLCMCoder coordinateNames() method converst java string array to cell…
Browse files Browse the repository at this point in the history
… array
  • Loading branch information
kuindersma committed Feb 27, 2014
1 parent b2dfb45 commit a262381
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/JLCMCoder.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
str = obj.jcoder.timestampName();
end

function str = coordinateNames(obj);
str = obj.jcoder.coordinateNames();
function str = coordinateNames(obj)
str = cell(obj.jcoder.coordinateNames());
end

function [x,t] = decode(obj,data)
Expand Down

0 comments on commit a262381

Please sign in to comment.