How do I avoid using if and else statements in this code
Mostrar comentarios más antiguos
I want to rewrite this code but without if and else statements. I just want to enhance convergence rate
for i=1:N-1
for j=1:M-1
A(i+(M-1-j)*(N-1),i+(M-1-j)*(N-1))=-2/dx^2-2/dy^2;
B(i+(M-1-j)*(N-1))=B(i+(M-1-j)*(N-1))-(cos(x(i)+y(j))+cos(x(i)-y(j)));
if i==1
B(i+(M-1-j)*(N-1))=B(i+(M-1-j)*(N-1))-cos(y(j))/dx^2;
else
A(i+(M-1-j)*(N-1),i-1+(M-1-j)*(N-1))=1/dx^2;
end
end
end
3 comentarios
Rik
el 1 de Mayo de 2020
Why do you want to remove the if? What is your end goal? To speed up the code?
Also, please use the layout tools to make your code more readable.
SA
el 1 de Mayo de 2020
Ameer Hamza
el 1 de Mayo de 2020
Can you write down the equation you are trying to implement with these for loops?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Structural Mechanics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
