i have plottet a piecewise function to get the graph, and i now want to get the inverted function, so that i get 1/y on the y axis, how do i do this?
fplot(@(x) (2367005001044503*x^2)/140737488355328,[0 67/1000],'b') hold on fplot(@(x) ((5074858722104307*(x-67/1000)/2251799813685248)+0.07549861498),[67/1000 3/25],'b') hold on fplot(@(x) (-(((x-3/25)*(18936040008356024*(x-3/25) - 7082078963507959)/1125899906842624))+0.1949441850),[3/25 1/5],'b') hold off grid on

 채택된 답변

ANKUR KUMAR
ANKUR KUMAR 2017년 12월 5일

1 개 추천

You want to get the reciprocal of y.
fplot(@(x) 1/(2367005001044503*x^2)/140737488355328,[0 67/1000],'b')
You will get the reciprocal of y.

추가 답변 (0개)

카테고리

질문:

2017년 12월 4일

답변:

2017년 12월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by