handle tick line in 3D mesh plot

 Respuesta aceptada

Sean de Wolski
Sean de Wolski el 11 de Nov. de 2013
As in modifying the 'LineWidth' of a mesh plot?
h = mesh(magic(5));
set(h,'LineWidth',3);
If not, please clarify the question.

Más respuestas (1)

francesco
francesco el 26 de Nov. de 2013

0 votos

Thank you,! for plots this solution is perfect,
I was wondering is but won't work in some cases, as defined graphs (PSD) power spectral density
Let's work
%
%
Fs=10000
h = spectrum.welch;
var=peaks(100)
Hpsd1 = psd(h,var(:,length(var)/2),'Fs',Fs);
figure, hold all
h=plot(Hpsd1);
set(h,'LineWidth',3,'Color','red');
clear Hpsd1 var h Fs
%
%
gives "dspdata.abstractfreqresp.plot"
issues handling specs for predefined plots
doesn't allow use linespecs inside.
plot(v,'linewidth',10,'Color','green'). thanks

Categorías

Más información sobre Line Plots en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 9 de Nov. de 2013

Respondida:

el 26 de Nov. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by