Plot Befehl Flashcards

1
Q

Erkläre das Vorgehen beim erstellen einer Funktion unter Nutzung eines m-Files .

A
  1. neuen m-File anlegen der Namen der Funktion trägt
  2. function [rückgabewert] = Funktionsname (parameterliste)

Anweisungen

end

Aufruf :

[p,q] = funktionsname(x,y);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Erkläre eine andere Möglichkeit eine Funktion zu nutzen

A

[y]=myfunc(x)
y= x.^3
end

Bsp :

cliff(x) —> Abstände der x Einträge
quadl(@myfunc, obere Grenze , untere Grenze)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Erkläre wie eine anonyme Funktion funktioniert

A

myfunc=@(x) x.^3

dann quadl(myfunc,0,2)

Oder

quadl(x.^3,0,2)

fplot(myfunc, [0.5 5.5])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly