Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hackassin
GitHub Repository: hackassin/Coursera-Machine-Learning
Path: blob/master/Week 2/Octave Tutorial/5. Control & Methods/squareThisNumber.m
625 views
1
function y = squareThisNumber(x)
2
y = x^2;
3