about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/KPMtools/sprintf_intvec.m
blob: 673ab922fc690d289a3a70bd189ec69ca29dbaf5 (plain)
1
2
3
4
5
6
7
8
9
function s = sprintf_intvec(v)
% SPRINTF_INTVEC Print a vector of ints as comma separated string, with no trailing comma
% function s = sprintf_intvec(v)
%
% e.g., sprintf_intvec(1:3) returns '1,2,3' 

s = sprintf('%d,', v);
s = s(1:end-1);