필터 지우기
필터 지우기

How to create a ezcontour in cylindrical domain?

조회 수: 1 (최근 30일)
Moein
Moein 2015년 11월 4일
댓글: Mike Garrity 2015년 11월 4일
hi friends
i have a temperature profile that is a function of radious, r, like this:
syms r
T= -r ^ 2 + 1;
i want to create cylindrical contours in this domain: 0<r<1 ( with symbolic functions) i can do this work by Maple but i want draw it with matlab. the shape that i want to obtain is available in attached file. explain what command i should use or how can i change the coordinate type to cylindrical to recognize the T(r) as a 2D function.
thanks a lot

답변 (1개)

Mike Garrity
Mike Garrity 2015년 11월 4일
Can't you just add the definition of R in terms of X & Y?
syms x y
r = sqrt(x^2+y^2);
t = -r^2 + 1;
ezcontour(t)
axis equal
  댓글 수: 2
Moein
Moein 2015년 11월 4일
편집: Moein 2015년 11월 4일
it works but you see that the domain is not 0<r<1. i found the axact answer of my question here:
https://www.youtube.com/watch?v=wSYvIJ0cPgM
but thank you for your answer Mike.
Mike Garrity
Mike Garrity 2015년 11월 4일
I'd forgotten that pol2cart works on syms!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by