-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjacobiana.m
49 lines (42 loc) · 1.27 KB
/
jacobiana.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
function [J] = jacobiana(F, n_comp)
% [J] = JACOBIANA(F, n_comp)
% calcola la Jacobiana di F funzione a più variabili, dato in ingresso
% un numero n_comp contenente il numero di componenti
%
% esempio
% F = @(x,y) x+y;
% J = jacobiana(F,2)
%
% ATTENZIONE: è possibile calcolare la Jacobiana
% per funzioni fino ad un massimo di 5 componenti
% Software by Carlo Zambaldo (info@carlozambaldo.it)
% This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.
syms x1 x2 x3 x4 x5;
if n_comp == 2
F = F(x1,x2);
v = [x1 x2];
J = jacobian(F,v);
J = matlabFunction(J);
end
if n_comp == 3
F = F(x1,x2,x3);
v = [x1 x2 x3];
J = jacobian(F,v);
J = matlabFunction(J);
end
if n_comp == 4
F = F(x1,x2,x3,x4);
v = [x1 x2 x3 x4];
J = jacobian(F,v);
J = matlabFunction(J);
end
if n_comp == 5
F = F(x1,x2,x3,x4,x5);
v = [x1 x2 x3 x4 x5];
J = jacobian(F,v);
J = matlabFunction(J);
end
if n_comp < 2 || n_comp > 5
error("Numero incorretto di componenti");
end
end