How to write matlab code for this equation?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Anushka
le 15 Mar 2015
Réponse apportée : shabana javed
le 19 Nov 2017
How to write matlab code for the equation given below

0 commentaires
Réponse acceptée
Image Analyst
le 15 Mar 2015
How about:
subarray = f(y1:yb, x1:xb);
Qs = sum(subarray(:)) - 0.5 * b^2;
Plus de réponses (2)
christopher bernard
le 6 Mar 2016
How to write matlab code for this equation
ASinkc xe-jβz
ASinkc de-h(x-d)e-jβz
2 commentaires
Walter Roberson
le 6 Mar 2016
A * sin(k * c) * x * e - j * beta * z
A * sin(k * c) * d * e - h * (x-d) * e - j * beta * z
However, I suspect the e- might be an exponential . If so then the forms might be
A * sin(k * c) * x * exp(-j * beta * z)
A * sin(k * c) * d * exp(-h * (x-d)) * exp( -j * beta * z)
Of course there are other possible meanings, such as
A * sin(kc * x) * exp(-j * beta * z)
It would be easier if there had been an image of the formulae available.
shabana javed
le 19 Nov 2017
How to write a matlab code for the variable Step-size for improving conergence of Fx-LMS algorithm?
0 commentaires
Voir également
Catégories
En savoir plus sur Contour Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!