TipiWiki2

[ MatLab.2006-11-29-08-22 ]

edit | Recent Changes | Find Page | All Pages | Front Page |

Schleife mit Schrittweite ungleich 1

for t = [1:100]
   x(t) = t/10;
   y(t) = 2 * exp((2+sqrt(3))*(t/10)) + 4 * exp((2-sqrt(3))*(t/10));
end
plot(x,y);