Can not run function, written wrong?

10 次查看(过去 30 天)
I can nor run the function and do not understand where I have written it wrong.

采纳的回答

Star Strider
Star Strider 2019-10-11
The order is reversed. The ‘x’ variable needs to be assigned before calculating ‘y’, since ‘y’ depends on ‘x’.
  2 个评论
Hanna Sundling
Hanna Sundling 2019-10-11
yeah, I changed that so x is assigned before y but when I plot the graph does not look like it is supposed to. So I thought that i maybe have written the function wrong?
Star Strider
Star Strider 2019-10-11
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 |')

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graph and Network Algorithms 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by