fplot(@(A) Calc_Result(A, B, C, D), [0 1]);
fplot immediately plots Calc_Result on the interval [0 1]. fplot does not plot NaN values. Note that this code doesn't specify that you wanted to plot 100 points between 0 and 1 (i.e., plot at stepsizes of 0.01); fplot doesn't care about that.
If you needed that data in addition to plotting it, you could always generate it first, then plot the data afterward. If the function isn't already built to take care of matrix inputs, you could do this:
xvals = [];
yvals = [];
for A = 0:0.01:1
y = Calc_Result(A, B, C, D);
if ~ isnan(y)
yvals = [yvals y];
xvals = [xvals A];
end
end
plot(xvals, yvals);
If it is built to deal with matrix inputs (i.e., you have a . in the right places to perform element-by-element multiplication and division), you could just do something like
A = 0:0.01:1;
y = Calc_Result(A, B, C, D);
Without knowing when it returns NaN values though, I think your best bet is to go with the for-loop. It might be a little slower than using matrix inputs, but with only 100 values to calculate I don't think it's a big deal.