Clear Filters
Clear Filters

How do i print '^' in sprintf?

1 view (last 30 days)
Kaelan Wade
Kaelan Wade on 19 May 2017
Answered: KSSV on 19 May 2017
  • Just say
  • a = 2
  • b = 3
  • and i wanted to print " a*x^b " using sprintf
  • why is it when in use sprintf('%.2f*x^%.2f',a,b)
  • or even sprintf(%.2f*x%s%.2f',a,'^',b)
  • matlab prints 2.00*x3.00
  • How would I print " 2.00*x^3.00 " ?

Answers (1)

KSSV
KSSV on 19 May 2017
a = 2 ;
b = 3 ;
sprintf('%d*x^%d',a,b)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!