sir,how to implement multiplications of exponential equations in matlab.
1 次查看(过去 30 天)
显示 更早的评论
how can i multiply a sinusoidal grating with a two dimensional guassian function h(x,y).
0 个评论
采纳的回答
Walter Roberson
2014-2-1
[X, Y] = ndgrid( -5:.1:5, 3:.01:4); replace the constants with the limits for x and y
gauss_mat = h(X, Y);
grating = ... whatever over X and Y
result = grating .* gauss_mat;
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!