Posts by CarlosRSO • 1 point
2 posts
-
0
votes1
answer92
viewsA: MATLAB, how to create symbolic variables with FOR?
I don’t quite understand the idea of your application but why instead of creating several variables just don’t declare an array like syms and then use for for to create the n positions you want?…
-
0
votes2
answers78
viewsA: Loop step size for MATLAB
Hello, in this case the increment (step) should be 0.15 and not 1 as suggested in the example. Then do the following: for k=1:0.15:10 % k = start:increment/decrease:end %... end…