Unable to plot implicit function in MATLAB 2016a

조회 수: 1 (최근 30일)
Maruti Patil
Maruti Patil 2017년 6월 2일
답변: Star Strider 2017년 6월 2일
clc;clear all;close all
syms b P
phi0=asin(1.5/b);
f = -(2*P*1.35/(1.5^2*1.1538*10^5))+...
((pi-2*phi0)/(4*sin(phi0)*sin(phi0)))-0.5*cot(phi0);
ezplot(f); grid on

채택된 답변

Star Strider
Star Strider 2017년 6월 2일
You need to make a few changes for this to work:
syms b P
phi0(b) = asin(1.5/b);
P = 2;
f(b) = -(2*P*1.35/(1.5^2*1.1538*10^5))+...
((pi-2*phi0(b))/(4*sin(phi0(b))*sin(phi0(b))))-0.5*cot(phi0(b));
ezplot(f(b), [-15 15]);
grid

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by