[완료]C++에서 Complex 타입에 대해서

lsjlsu1022의 이미지

보통 수학적으로 sqrt(-1)을 허수i로 정의하는데 C++14기준으로 x=sqrt(-1)이라 했을때 자동으로 x의 값을 complex com3(0, 1)로 변환해주나요?

no의 이미지

No.

tyhan의 이미지

man -S3 sqrt
 
If x is less than -0, a domain error occurs, and a NaN is returned.
tyhan의 이미지

이건 C였군요...

 의 이미지

아니오.

C++에서 sqrt는 여러 버전으로 오버로딩 되어 있습니다.

부동소수점 수를 받아 부동소수점 수를 반환하는 버전:
(http://en.cppreference.com/w/cpp/numeric/math/sqrt)

float       sqrt( float arg );
double      sqrt( double arg );
long double sqrt( long double arg );
double      sqrt( Integral arg ); // (since C++11) 

복소수를 받아 복소수를 반환하는 버전:
(http://en.cppreference.com/w/cpp/numeric/complex/sqrt)

template< class T >
complex<T> sqrt( const complex<T>& z );

레퍼런스를 보시면 아시겠지만, 전자는 cmath 헤더에서, 후자는 complex 헤더에서 선언됩니다.
C++11 이후로는 Integral arg를 받는 버전이 추가되었는데, 이는 arg를 double로 캐스팅하여 double을 받는 버전을 호출한 것과 동일하게 동작합니다.

따라서 C++14 기준으로 x=sqrt(-1)와 같이 호출하면 double을 받는 버전을 호출한 것과 동일하게 동작한다는 거에요. -1은 도메인 밖이므로 implementation-defined value(보통은 NaN)이 반환됩니다.

원하시는 대로 동작하게 하고 싶으시면 복소수를 받아 복소수를 반환하는 버전을 호출하시면 됩니다.
예컨대 뭐 이렇게:

#include <iostream>
#include <complex>
using namespace std;
 
int main(void) {
	complex<double> z = -1;
	cout << "sqrt(" << z << ") = " << sqrt(z) << endl;
	return 0;
}

http://ideone.com/v415Rt

실행 결과:
sqrt((-1,0)) = (0,1)

익숙한 노테이션은 아니긴 하지만 어쨌든 바라는 대로 나왔죠.

lsjlsu1022의 이미지

역시 값이 허수가 되게 할려면 사전에 복소수라고 한 뒤에 가능한 거네요

jehnpark의 이미지

아쉽게도 double로 받으면 double로 반환을 해요
int * int = int 인것처럼요

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.