How can i solve 3 parameters of Weibull distribution under with initial data? like nonliear equation? Or do we have any method for estimate 3 parameters distribution from fail
Afficher commentaires plus anciens
How can i solve 3 parameters of Weibull distribution under with initial data? like nonliear equation? Or do we have any method for estimate 3 parameters of Weibull distribution for number of failure strength?

clc; clear; close all;
syms m sigma sigma_0 sigma_th
% Define failure strength data (30 values)
sigma_i = [137.48, 162.07, 162.24, 162.82, 164.01, 164.40, 165.87, ...
167.72, 169.75, 171.39, 177.64, 180.30, 180.57, 181.05, ...
182.19, 182.86, 187.90, 187.92, 188.07, 188.21, 188.25, ...
189.46, 190.05, 190.82, 190.99, 191.17, 191.62, 214.00, ...
218.37, 221.12];
N = length(sigma_i); % Number of failure strength values
% Equation 1: dL/dσ_th
eq1 = -(m - 1) * sum(1 ./ (sigma_i - sigma_th)) + (m / sigma_0^m) * sum((sigma_i - sigma_th).^(m - 1));
% Equation 2: dL/dσ_0
eq2 = -(n * m) / sigma_0 + (m / sigma_0^(m + 1)) * sum((sigma_i - sigma_th).^m);
% Equation 3: dL/dm
z = (sigma_i - sigma_th) / sigma_0;
logz = log(sigma_i - sigma_th);
eq3 = (n / m) - n * log(sigma_0) + sum(logz) - sum(z.^m .* (logz - log(sigma_0)));
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Exploration and Visualization dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

