diff --git a/replicate.m b/replicate.m new file mode 100644 index 0000000000000000000000000000000000000000..fee6dad068e2e9f3d6046c9f5f08faf024a80f1f --- /dev/null +++ b/replicate.m @@ -0,0 +1,7 @@ +function Value = replicate(Value,ind) +%REPLICATE Summary of this function goes here +% Detailed explanation goes here + +Value = repmat(Value(:,ind),1,size(Value,2)); + +end \ No newline at end of file