How to code below mathematical formula?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hassan Ashraf
el 3 de Jul. de 2019
Editada: KALYAN ACHARJYA
el 3 de Jul. de 2019
I want to implement a below mathematical function in MATLAB, can anyone help me out?
![myop.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/227265/myop.png)
0 comentarios
Respuesta aceptada
Más respuestas (1)
KALYAN ACHARJYA
el 3 de Jul. de 2019
Editada: KALYAN ACHARJYA
el 3 de Jul. de 2019
x= %define x value range
n= %define n
threshold= %define threshold value
fx=x;
idx1=find(fx>=threshold);
fx(idx)=1;
idx1=find(fx<threshold);
fx(idx)=0;
MYOP=(sum(fx(1:n)))/n;
2 comentarios
Stephen23
el 3 de Jul. de 2019
Editada: Stephen23
el 3 de Jul. de 2019
Note that this answer does not implement the formula given in the question.
In particular it does not include f(x) in any way within the sum, as the question indicates. It also does not vectorize the generation of fx (or use a loop), so it is unlikely to be a useful approach anyway.
The code throws an error when run because xi is not defined:
Undefined function 'xi' for input arguments of type 'double'.
Ver también
Categorías
Más información sobre Function Definition en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!