Find distance between point (1,3,1) and plane 3(x-2)+2(y-1)-3(z-1)=0

1 次查看(过去 30 天)
can't seem to find the commands for this.

采纳的回答

Andrei Bobrov
Andrei Bobrov 2012-8-6
fp = @(x)(x(:).' - [2, 1, 1])*[3;2;-3]; % your plane
x0 = [1,3,1]; % your point
d = fp(x0)/norm([3;2;-3]) ; % your distance

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by