https://github.com/Data2Dynamics/d2d
Raw File
Tip revision: 83d6eedd5f6c33ae94dbce6c4e620d2f1bb57b1f authored by Joep Vanlier on 09 April 2015, 08:41:55 UTC
Forgot to update C version number
Tip revision: 83d6eed
arExtendStr.m
function str = arExtendStr(str, n)
nd = n - length(str);
S = ' ';
str = [str S(ones(1,nd))];
back to top