Werkzeuge/Software/Matlab: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 17: | Zeile 17: | ||
In Matlab werden Polynome als Arrays ihrer Polynomialkoeffizienten erfasst. | In Matlab werden Polynome als Arrays ihrer Polynomialkoeffizienten erfasst. | ||
So | So entspricht | ||
<syntaxhighlight lang="matlab"> | |||
h = [5,2,1] | |||
</syntaxhighlight> | |||
dem Polynom | |||
::<math>h(t) = 5\cdot t^2+2\cdot t+1</math> | |||
Das könnte die Höhe eines Balls im eErdschwerefeld beschreiben - mit <math display="inline">g=10 m/s^2</math>. | |||
===== conv ===== | |||
<syntaxhighlight lang="matlab" line start=1> | <syntaxhighlight lang="matlab" line start=1> | ||
h = [5,2,1] | h = [5,2,1] | ||
</syntaxhighlight> dem Polynom <math display="inline>h(t) = 5*t^2+2*t+1</math> | </syntaxhighlight> dem Polynom <math display="inline>h(t) = 5*t^2+2*t+1</math> | ||
Version vom 18. Februar 2021, 08:19 Uhr
Beispiel-Programme
Eine Auswahl von Befehlen
Polynome
Definition
In Matlab werden Polynome als Arrays ihrer Polynomialkoeffizienten erfasst.
So entspricht
h = [5,2,1]
dem Polynom
Das könnte die Höhe eines Balls im eErdschwerefeld beschreiben - mit .
conv
h = [5,2,1]
dem Polynom