How to write these problems in matlab?

45(288/9.3-4.6^2)-1065e^-1.5 and y=x^2-e^0.5x+x

2 个评论

This is confusing.
What is ‘e’?
Is it a variable, or the exponential function exp()?
Please clarify what you want to do.
Its the exp() function. I want to know how to type these equations in matlab separately.

请先登录,再进行评论。

 采纳的回答

That’s easy, then. The first one’s not an equation, so I supplied the missing left-hand side:
q = 45*(288/9.3-4.6^2)-1065*exp(-1.5)
y = x.^2-exp(0.5.*x)+x
I assume here the missing operators are implied multiplication. Since ‘x’ may be a vector (I don’t know from what you’ve written), I used the element-wise array operators (.^) and (.*) in place of the vector operators (^) and (*). They will work with both scalars and vectors.

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Linear Algebra 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by