How to make a function file that displays a polynomial and accepts a specific command?

조회 수: 1 (최근 30일)
function lou(a,b,c)
fprintf('%dx^2 + %dx + %d =0 \n',a,b,c)
end
this is my code right now. how do i modify my code to make the command lou([a b c]) work?

채택된 답변

Rik
Rik 2022년 4월 15일
Why do you want to call your function like that? lou(a, b, c) will already work.
Anyway:
function lou(a,b,c)
if nargin==1,c=a(3);b=a(2);a=a(1);end
fprintf('%dx^2 + %dx + %d =0 \n',a,b,c)
end

추가 답변 (1개)

KSSV
KSSV 2022년 4월 15일
val = lou(1,2,3,.2)
1x^2 + 2x + 3 =0
val = 3.4400
function val = lou(a,b,c,x)
fprintf('%dx^2 + %dx + %d =0 \n',a,b,c)
val = a*x^2+b*x+c ;
end

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by