Can not run function, written wrong?
4 views (last 30 days)
Show older comments
Hanna Sundling
on 11 Oct 2019
Commented: Star Strider
on 11 Oct 2019
I can nor run the function and do not understand where I have written it wrong.

0 Comments
Accepted Answer
Star Strider
on 11 Oct 2019
The order is reversed. The ‘x’ variable needs to be assigned before calculating ‘y’, since ‘y’ depends on ‘x’.
2 Comments
Star Strider
on 11 Oct 2019
Note that ‘y’ will be complex, since you are taking the square root of a negative numbers in ‘x’ and in some parts of ‘sin(x)’.
Try this:
x = -1:0.5:1;
y = (x-sqrt(x))./sqrt(sin(x));
plot(x, real(y), x, imag(y), x,abs(y))
grid
legend('Re(y)', 'Im(y)', '| y |')
More Answers (0)
See Also
Categories
Find more on Graph and Network Algorithms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!