Borrar filtros
Borrar filtros

Trying to plot x,y, but it says error in y = f(x);

3 visualizaciones (últimos 30 días)
Jovos
Jovos el 17 de Mzo. de 2016
Respondida: Star Strider el 17 de Mzo. de 2016
function graph
x = 1:100;
y = f(x);
plot(x,y);
end
function [y] = f(n)
y = n * log2(n);
end

Respuesta aceptada

Star Strider
Star Strider el 17 de Mzo. de 2016
You need to use element-wise operations in this line:
y = n .* log2(n);
Note the ‘.*’ replacing the ‘*’. See the documentation for Array vs. Matrix Operations for details.

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by