Hi everyboy, Is it possible to change the tick size of mesh lines?

 채택된 답변

Sean de Wolski
Sean de Wolski 2013년 11월 11일

1 개 추천

As in modifying the 'LineWidth' of a mesh plot?
h = mesh(magic(5));
set(h,'LineWidth',3);
If not, please clarify the question.

추가 답변 (1개)

francesco
francesco 2013년 11월 26일

0 개 추천

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

카테고리

도움말 센터File Exchange에서 Line Plots에 대해 자세히 알아보기

질문:

2013년 11월 9일

답변:

2013년 11월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by