Why I am getting "Error Using Plot , invalid color or line type " in line 15
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos

2 comentarios
Respuestas (2)
Vignesh Murugavel
el 4 de Ag. de 2021
3 comentarios
Walter Roberson
el 4 de Ag. de 2021
On line 15 of your code you have '-5'. What did you intend by the 5 part of that?
reza
el 11 de Nov. de 2023
Editada: Walter Roberson
el 12 de Nov. de 2023
clc;
clear;
close all;
y=-1:10;
G=1:10;
c=5;
t=10;
D=3;
u_y='((-G*y^2)/2)+(c*y)+(t*y)+(4((t^(1/2)/3*G)*((c-G*y)^(3/2))+D)';
plot(y,u_y)
xlabel('y')
ylablel('u_y')
2 comentarios
Walter Roberson
el 12 de Nov. de 2023
y=-1:10;
G = (1:10).';
c=5;
t=10;
D=3;
u_y=((-G.*y.^2)/2)+(c.*y)+(t.*y)+(4.*((t.^(1/2)/3.*G).*((c-G.*y).^(3/2))+D));
plot(y,u_y)
xlabel('y')
ylabel('u_y')
Walter Roberson
el 12 de Nov. de 2023
Note that your y and G are different sizes -- 12 and 10 -- so you cannot combine them by element-by-element operations... not unless you transpose one of them and use implicit expansion.
Ver también
Categorías
Más información sobre Line Plots 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!