필터 지우기
필터 지우기

using variables in a legend, title, or axis

조회 수: 2 (최근 30일)
Daniel
Daniel 2013년 4월 22일
Is it possible to insert variables into a string like a legend or title? For example, I'm modeling a difference equation, and I'm using for-loops to test different parameters within the equation; is it possible to plot the results where the parameter value can be displayed in a legend or title with each for-loop iteration? Thanks!
x=zeros(1,100);
for p=1:3 %test different values for parameter lambda
lambda=p*20; %lambda changes arithmetically
for q=1:3 %test different values for parameter b
b=q;
for n=1:99
x(1)=1;
x(n+1)=lambda*x(n)/(1+x(n))^b;
end
figure
plot(1:100,x,'r')
end
end

채택된 답변

Walter Roberson
Walter Roberson 2013년 4월 22일
title( sprintf('lambda = %f', lambda) );

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Title에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by