why do I still get error with syntax

조회 수: 2 (최근 30일)
Aminata camara
Aminata camara 2021년 3월 19일
댓글: Aminata camara 2021년 3월 19일
Can someone please tell me what I am doing wrong!!
%Purpose:Plot using ezpolar function
%set value for variables
p=1000;
e=0.25;
%create function handle
r=@theta p\(1-(e*cos(theta)))
%use ezpolar to plot function
ezpolar(r)
I keep getting this error
Error: File: plot_using_EZZ_polarr.m Line: 6 Column: 11
Invalid expression. Check for missing multiplication operator, missing or unbalanced delimiters, or other syntax error.
To construct matrices, use brackets instead of parentheses.

답변 (1개)

KSSV
KSSV 2021년 3월 19일
편집: KSSV 2021년 3월 19일
p=1000;
e=0.25;
%create function handle
r = @(theta) p\(1-(e*cos(theta))) %<--- bracket is needed here
%use ezpolar to plot function
ezpolar(r)
  댓글 수: 3
KSSV
KSSV 2021년 3월 19일
I have already included the bracket.....did you run the code?
Aminata camara
Aminata camara 2021년 3월 19일
it did not work at first then when I close matlab and reopen it now it works thank you

댓글을 달려면 로그인하십시오.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by