solve the intersection of the line and surface

3 vues (au cours des 30 derniers jours)
xingjian yang
xingjian yang le 19 Mai 2018
Commenté : xingjian yang le 20 Mai 2018
I try to solve the intersection of a line and a surface by solving a system of nonlinear equations, while it seems to run into some problem of the global variables and function handle...
global x y z t
line_p=[3,2,1]; % point on the line
line_d=[1,2,3]; % line direction vector
surface=@(x,y,z)x+y^2+z^3-10;
p=intersection(line_p,line_d,surface);
function [p]=intersection(line_p,line_d,surface)
eq1=x-(line_p(1)+line_d(1)*t);
eq2=y-(line_p(2)+line_d(2)*t);
eq3=z-(line_p(3)+line_d(3)*t);
eq4=@(x,y,z)surface;
sol = solve(eq1,eq2,eq3,eq4,x,y,z,t);
p=sol(3,1);
end

Réponse acceptée

Rik
Rik le 19 Mai 2018
You need to declare globals in each function you use them to enable the functionality.
You should in general avoid global variables, because they are very difficult to debug. If you really have to use them, use very long, very descriptive names that you will never use again. If that name is too cumbersome to use, just copy the variable, see the example below.
function myfunction
global myfunction_global_variable__frequency_of_red_cars_from_Montana
cars=myfunction_global_variable__frequency_of_red_cars_from_Montana;
plot(cars)
end
  1 commentaire
xingjian yang
xingjian yang le 20 Mai 2018
Thank you! It's clearly explained

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by