function [ multiplier ] = C( rlength, q, w )
%UNTITLED Summary of this function goes here
%   Detailed explanation goes here
    if (rlength < w)
        multiplier = 1;
    else
        multiplier = q;
    end
end

