parse error at '=': usage might be invalid matlab syntax
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
function [b]=rf_comb(l,k,H,d)
b=zeros(1,Nu); for j=0:Nu-1
X= H'*d;
a=norm(X,1);
b[j]=a;
end
end
I am getting error at "b[j]=a;" as: parse error at '='. How should i rectify it?
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!