Problema con definizione di una funzione

조회 수: 2 (최근 30일)
Pasquale Volpe
Pasquale Volpe 2024년 7월 23일
답변: Abhinaya Kennedy 2024년 7월 29일
Salve, questa è la mia prima domanda, spero di non commettere errori.
Vi spiego brevemente il mio problema:
Ho da risolvere un sistema di equazioni non lineari mediante il metodo di Newton, in tal caso ho definito il sistema non lineare mediante una function, come segue
function [y]=f(x)
y(1)=x(1)^2+2*x(1)*x(2)-x(3);
y(2)=x(2)^3+x(3)^2;
y(3)=x(2)*x(3)-1;
y=y';
end
Quando eseguo la chiamata alla function f, mi restituisce il seguente errore
>> [y]=f(x)
Unrecognized function or variable 'x'.
Da cosa potrebbe essere causato ?
Scusatemi ancora per gli eventuali errori.
Saluti.

답변 (1개)

Abhinaya Kennedy
Abhinaya Kennedy 2024년 7월 29일
Hi Pasquale,
Dato che non conosco l'italiano, risponderò alla tua domanda in inglese. Ci scusiamo per l'inconveniente.
It seems like you are encountering an error because the variable "x" is not defined when you call the function "f". To resolve this issue, you need to define "x" before calling the function. Make sure that the function "f" is saved in a file named "f.m" in your current working directory or in a directory that is on your MATLAB path.
% Save this part as f.m
function [y] = f(x)
y(1) = x(1)^2 + 2*x(1)*x(2) - x(3);
y(2) = x(2)^3 + x(3)^2;
y(3) = x(2)*x(3) - 1;
y = y';
end
% Script to call the function
% Define the vector x
x = [1; 1; 1]; % Example initial values for x
% Call the function f
[y] = f(x);
% Display the result
disp(y);
Make sure to adjust the initial values of x as needed for your specific problem.
You can take a look at this documentation for more info: https://www.mathworks.com/help/matlab/ref/function.html

제품


릴리스

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!