How can you determine if a vector in R3 belongs to a three dimensional region with its conditions?

2 次查看(过去 30 天)
For instance v=(1,2,3) satisfices x^2 + y^2 + z^2 < 1?

回答(1 个)

Ameer Hamza
Ameer Hamza 2018-5-20
编辑:Ameer Hamza 2018-5-20
You can use this condition
sum(v.^2) < 1
It will return either true or false
  5 个评论
Jan
Jan 2018-5-20
@John: What you have posted is valid code already:
(x-x_0)^2 + (y-y_0)^2 + (z-z_0)^2 < 1
All you have to do is to replace "x" by "v(1)", "y" by "v(2)" and the same for "z".

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

产品


版本

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by