Files
QMUL_Machine_Learning/plot_cost.m
T
2016-10-19 09:37:09 +01:00

8 lines
105 B
Matlab

function plot_cost(J)
figure(2);
plot(J);
xlabel('itarations');
ylabel('cost');
end