sir,how to implement multiplications of exponential equations in matlab.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
ashok
am 1 Feb. 2014
Kommentiert: ashok
am 1 Feb. 2014
how can i multiply a sinusoidal grating with a two dimensional guassian function h(x,y).
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 1 Feb. 2014
[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;
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!