How can you determine if a vector in R3 belongs to a three dimensional region with its conditions?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
For instance v=(1,2,3) satisfices x^2 + y^2 + z^2 < 1?
Risposte (1)
Ameer Hamza
il 20 Mag 2018
Modificato: Ameer Hamza
il 20 Mag 2018
You can use this condition
sum(v.^2) < 1
It will return either true or false
5 Commenti
Jan
il 20 Mag 2018
@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".
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!