Borrar filtros
Borrar filtros

Plotting Problems with values bigger than...?

6 visualizaciones (últimos 30 días)
FishermanJack
FishermanJack el 4 de Dic. de 2017
Respondida: M el 4 de Dic. de 2017
Hi, i want to plot the Values of A that are bigger than 10 in the same figure with Red stars. The Problem is that, for the values for A greater than 10 i get 1 and i want the actual Value of A.
if true
figure;
plot(date,A,date,A1)
datetick('x','mmm-dd','keepticks');
xlabel('Datum','FontSize',14)
hold on;
plot(date,(A > 10),'r*', 'LineWidth',2,'MarkerSize',13);
end

Respuesta aceptada

M
M el 4 de Dic. de 2017
Try with
A(A>10)

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by