How to find the variable that minimize the root mean squared error between a known vetor and the multiplication of this variable and an another known vector?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Supposing that I have a variable
, and two known vectors
, where N is a known number. I want to find the a that minimizes the root mean squared error between
and
. Is there any neat apprach to implement it?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1289910/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1289915/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1289920/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1289925/image.png)
0 comentarios
Respuesta aceptada
Amal Raj
el 9 de Feb. de 2023
Hi 奥 刘,
You can use linear regression to find a.
Please refer this example below:
N = 100; % Example value for N
x = linspace(0, 10, N)'; % Known vector x
y = sin(x) + 0.1 * randn(N, 1); % Known vector y
X = [ones(N, 1) x]; % Design matrix
a = X \ y; % Solve for a using least squares
y_pred = X * a; % Calculate predicted values of y
rmse = sqrt(mean((y - y_pred) .^ 2)); % Calculate RMSE
Más respuestas (1)
Ver también
Categorías
Más información sobre Fit Postprocessing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!