Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

Help

Status
Not open for further replies.

scout_54

New Member
Hi guys, I got errors at this point of running the codes. Can anyone help?
M=3
Y=[126;126;126;127;128;133;126;126;126;126;126;126;126;126;126;125;124;124;130;130]


function [h, mu, sigmas, P] = em(M, Y);

[T,D] = size(Y); % T=20, D=1
Tmu=1.0e-03; % Tmu=0.0010
h = ones(T,M)/M;
P = ones(M,1)/M;

for j=1:M,
k = round(rand(1)*T);
mu(j,1:D) = Y(k,1:D);
sigmas(j,1:D) = ones(1,D);
end
 
Which language is that. Doesn't seem to be like C or BASIC.
 
Status
Not open for further replies.

New Articles From Microcontroller Tips

Back
Top