I don't know how to call my function

1 visualización (últimos 30 días)
Joshua Vuong
Joshua Vuong el 7 de Sept. de 2021
Comentada: Image Analyst el 8 de Sept. de 2021
function norm = myvectornorm(x)
% calculate the norm
s=0;
n=length(x);
for i=1:length(x)
s =s+ x*(i)^2;
end
norm= sqrt(s);
end

Respuestas (1)

John D'Errico
John D'Errico el 8 de Sept. de 2021
Editada: John D'Errico el 8 de Sept. de 2021
What language are you using here? Possibly not MATLAB. :)
s = s + L*(i)^2;
Do you think that squares the number i, and then multiplies the square of that value by the vector L? After all, * tells MATLAB to multiply two things.
Or, did you want to access the i'th element of L, and then square it? But L is itself only the length of the vector x, so just the number of elements in x.
Or, do you relly want to access the i'th element of the vector x, square THAT, and then sum the result into s?
The code you wrote will not achieve the latter. For that to happen, you would need to write this:
s = s + x(i)^2;
  4 comentarios
Joshua Vuong
Joshua Vuong el 8 de Sept. de 2021
Well thanks I appreciate it but as I said in the title I don't know how to call my function its for an assignment asking me to do multiplt tests for different vecotrs one being [1 1 1] another [ 1/sqrt(2) 0 1/sqrt(2)] I might have communicated my complications incorrectly my code works fine. This is for matlab grader and I would appreciate the help with out the snide comments. thanks
Image Analyst
Image Analyst el 8 de Sept. de 2021
Call it like this
x = [1,1,1]; % Whatever values you want.
norm = myvectornorm(x)

Iniciar sesión para comentar.

Categorías

Más información sobre Programming 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!

Translated by