*Problem Find area surface*

2 ビュー (過去 30 日間)
justin  Taylor
justin Taylor 2011 年 12 月 4 日
x = ( 1-u )(3+cos v)cos(2pi*u)
y = ( 1-u )(3+cos v)sin(2pi*u)
z = 4u + ( 1-u )sinv.
D={(u,v)|0<=u<=1,0<=v<=2pi}
mycode
{ syms u v;
x = (1-u).*(3+cos(v)).*cos(pi*u);
y = (1-u).*(3+cos(v)).*sin(pi*u);
z = 8*u+( 1-u ).*sin(v);
F=[x,y,z];
ru=diff(F,[u]);
rv=diff(F,[v]);
ruv=ru.*rv;
druv=sqrt(ruv(1).^2+ruv(2).^2+ruv(3).^2);
S=int(int(druv,u,0,1),v,0,2*pi)
}
  1 件のコメント
Jan
Jan 2011 年 12 月 5 日
Please, Anh Em, stop sending me emails. This is a public forum and it lives on the idea that all information are shared.
Whenever I know an answer, I take the time to post it here. Therefore there is no reason to push me by emails. In opposite: it is annoying, and therefore a bad idea, if you want to get an answer.
As Walter I suggest to read: http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer and
http://www.mathworks.com/matlabcentral/answers/8626-how-do-i-get-help-on-homework-questions-on-matlab-answers

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2011 年 12 月 4 日
This is a curved horn that is not self intersecting. You can drop the z coordinate and simply integrate the circumference of the circle with radius (1-u)*(3+cos(v)) over your u, v.
  3 件のコメント
justin  Taylor
justin Taylor 2011 年 12 月 12 日
Can you solotions details it ? I was tried it.
justin  Taylor
justin Taylor 2011 年 12 月 13 日
multiplication have direction vector ? i don't known it .

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by