mysqrt.m

mysqrt(x) computes the square root of x

Installation:

addpath('../src/')

Basic usage:

y = mysqrt(5)
y =

    2.2361

Advanced usage:

x = linspace(0, 10, 100);
plot(x, mysqrt(x))

png