필터 지우기
필터 지우기

Converting cosine to exponential form

조회 수: 5 (최근 30일)
Andromeda
Andromeda 2021년 11월 7일
편집: Andromeda 2021년 11월 10일
I am trying to convert a cosine function to its exponential form but I do not know how to do it.
[more elaboration]
syms w y
function1 = input('user please enter input');
%user input is cos(y)
desired_output = (-1)^(w*pi) if y = w*pi

답변 (1개)

Jan
Jan 2021년 11월 7일
cos(x) = 0.5 * (exp(1i * x) + exp(-1i * x))
exp(ix) = cos(x) + 1i * sin(x)
I do not understand, why the desired output is (-1)^(w*pi).
  댓글 수: 1
Andromeda
Andromeda 2021년 11월 7일
편집: Andromeda 2021년 11월 7일
(-1)^(w*pi) is merely arbitrary but it relates to stationery points of a curve. I am familiar with the forms of cosine and the exponential function that you have provided but that is not what I am looking for.
I am well aware that you can do the following but I want an alternative way of doing it
user_input = cos(3*y); %coefficient of y is 3
result = (-1)^(3*pi) %desired output

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

카테고리

Help CenterFile Exchange에서 Computational Geometry에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by