% plotLC % Plot the learning curve. close all; clear all; x=[1:10]; y=10./exp(x); figure; plot(x,y,'rd-'); xlabel('trials'); ylabel('ErrorRate'); grid; MyFirstProgram;