Error: Not enough input argument (line 6)
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
function L = QoS(Data,model,estR,estE)
load('HMMParam.mat');
S = xlsread('Dataset.xlsx');
model = model(1:size(Data,1));
model = model/max(model(:));
model = round(model);
R = logical(model);
T = Data(R,:);
G = zeros(sum(R),1);
for i = 1:sum(R)
Q = T(i,:);
Co = hmmdecode(Q,estR,estE);
Q = Q.*Co;
G(i) = sum(Q);
end
L = 1 - mean(G);
end
Respuestas (1)
KALYAN ACHARJYA
el 19 de Jul. de 2019
Editada: KALYAN ACHARJYA
el 19 de Jul. de 2019
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!