Computing Jacobian - Code Answer Flashcards

1
Q

What comes under ‘%Compute jacobian matrix’?

A

jac=deriv*elcod;

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

What comes under ‘%Determinate of the jacobian’?

A

detJ=det(jac);

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

What TWO LINES come under ‘%Check for negative jacobian’?

A

if detJ ); stop

end

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

What comes under ‘%Compute inverse jacobian’?

A

jaci=inv(jac);

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

What comes under ‘%Compute cartesian derivatives’?

A

cartd=jaci*deriv;

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