can i get rid of rectangular coordinates and get something like a blade shape image in matlab as shown in figure. If yes then please refer me to some example

조회 수: 1 (최근 30일)

답변 (3개)

Bjorn Gustavsson
Bjorn Gustavsson 2014년 1월 21일
yes. Use:
surf(X,Y,Z,C),shading flat.view(0,90)
Where you might set the Z-matrix to all zeros (or something else if you'd rather like that)
HTH
  댓글 수: 4
Rizwana
Rizwana 2014년 1월 22일
Sir: It is giving error saying dimensions of the matrix are not matching right after the 1st line i tried. XYZ = [R.*cos(ca),R.*sin(ca),cptot];
Bjorn Gustavsson
Bjorn Gustavsson 2014년 1월 22일
You have to check that their sizes are the same, first check:
whos R ca cptot
then hopefully you'll only have to transpose R:
XYZ = [R.'.*cos(ca),R.'.*sin(ca),cptot];
HTH

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


Walter Roberson
Walter Roberson 2014년 1월 27일
Have a look at "Obtaining Angular Directions in a Projection Space" in the document http://www.mathworks.com/help/map/accessing-computing-and-inverting-map-projection-data.html#f11-12738 . The graph shown there in 6. -- isn't that the same kind of graph that you need, except with a greater mapping angle? If so then you can use the setup shown in 1. but with different lat and lon limits.

Image Analyst
Image Analyst 2014년 1월 27일
If it's just a rubber sheet stretch, then imtransform() can do that.

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by