Translating Trig Expressions into Code
7 次查看(过去 30 天)
显示 更早的评论
Hello everyone! I am a beginner at matlab and am attempting to calculate the area of each individual grid cell of climate data. I know that the area can be calculated with ((2*pi*R)/360)^2)*cos(theta)*delta_latitude*delta*longitude but am lost as to how to translate this into code. Can anyone offer suggestions please?
2 个评论
Joseph Cheng
2014-8-22
编辑:Joseph Cheng
2014-8-22
well unless there is something complicated what you typed in should work. if any of those are an array (more than 1x1) then you may want to look into the element by element multiplication '.*'
also did you make a typo? should it be delta_longitude?
((2*pi*R)/360)^2)*cos(theta)*delta_latitude*delta_longitude
and make sure theta is in radians or use cosd() for cosine with input of degrees.
回答(2 个)
Roger Stafford
2014-8-22
Your formula is only a valid approximation if the two delta's are small and are measured in degrees. Also theta must be the latitude. If it is measured in degrees, in matlab you would use either cosd(theta) or cos(theta*pi/180). Otherwise you can copy it directly into a matlab assignment.
3 个评论
Roger Stafford
2014-8-22
编辑:Roger Stafford
2014-8-22
Yes, that would produce a complaint from matlab. If you have a 224 x 1 size vector first multiplied by a 1 x 240 size vector second, it would give you a 224 x 240 matrix of products. Is that what you are after? You haven't adequately explained what you are really attempting to do.
Image Analyst
2014-8-22
编辑:Image Analyst
2014-8-22
I think you both made a typo. There should be no ) after the R. You have three ( and four ).
degreeToRadiansConversionFactor = pi / 180; % Call it out so people know what it is.
area = (R * degreeToRadiansConversionFactor)^2 * delta_latitude * delta_longitude;
I also took out the cos(theta) since I don't know why it's there. Since the arc length on the surface of a circle is S=R*theta, if the patch is rectangular, you'd get an area of length * width = R^2 * delta_latitude * delta_longitude, where delta_latitude & delta_longitude are in radians, so where do you get the cos(theta) from?
6 个评论
Roger Stafford
2014-8-22
@Image Analyst. If you have ever used USGS topographical maps, you will note that maps in the U.S. of the seven-and-a-half-minute series are not squares but are rectangles, even though the two angle delta's are the same. That illustrates the need for the cosine correction.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!