필터 지우기
필터 지우기

How to plot symbolic function with string specification?

조회 수: 2 (최근 30일)
Niklas Kurz
Niklas Kurz 2022년 2월 3일
답변: Steven Lord 2022년 2월 3일
Briefly I want to execute
syms x
f = x
fplot(f,'b','LineWidth',2)
but a little fancier. I want the specification to be a string that I just can add. For instance:
syms x
f = x
str = ['b','LineWidth',2];
fplot(f,str)
Unfortunately this outputs an error

채택된 답변

Steven Lord
Steven Lord 2022년 2월 3일
Store your options as a cell array and turn it into a comma-separated list when you call fplot.
syms x
f = x;
options = {'b','LineWidth',2};
fplot(f, options{:})

추가 답변 (1개)

KSSV
KSSV 2022년 2월 3일
May be you can consider using like below.
syms x ;
f = x ;
h = fplot(f) ;
h.LineWidth = 2 ;

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by