Difference between revisions of "File:AcosplotT.png"

From TORI
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
  +
{{oq|AcosplotT.png|Original file ‎(897 × 1,387 pixels, file size: 69 KB, MIME type: image/png)}}
  +
 
[[Explicit plot]] of function [[ArcCos]].
 
[[Explicit plot]] of function [[ArcCos]].
: $y=\mathrm{acos}(x)$
+
: \(y=\mathrm{acos}(x)\)
is plotted versus $x$.
+
is plotted versus \(x\).
   
  +
The plot is loaded as one of tests of the complex double implementation of function "acos".
==C++ generator of curve==
 
File [[ado.cin]] should be loaded in the cuffent directory for the compilation of the [[C++]] code below:
 
   
  +
However, the same curve can be plotted with the C++ build-in double function "acos".
  +
 
==C++ generator of curve==
 
//File [[ado.cin]] should be loaded in the cuffent directory for the compilation of the [[C++]] code below:
  +
<pre>
 
#include <math.h>
 
#include <math.h>
 
#include <stdio.h>
 
#include <stdio.h>
Line 42: Line 48:
 
getchar(); system("killall Preview");//for mac
 
getchar(); system("killall Preview");//for mac
 
}
 
}
  +
</pre>
 
 
==Latex generator of labels==
 
==Latex generator of labels==
   
<nowiki>
+
<pre>
% Copyleft 2012 by Dmitrii Kouznetsov %<br>
+
% Copyleft 2012 by Dmitrii Kouznetsov
\documentclass[12pt]{article} %<br>
+
\documentclass[12pt]{article}
\usepackage{geometry} %<br>
+
\usepackage{geometry}
\usepackage{graphicx} %<br>
+
\usepackage{graphicx}
\usepackage{rotating} %<br>
+
\usepackage{rotating}
\paperwidth 432pt %<br>
+
\paperwidth 432pt
\paperheight 668pt %<br>
+
\paperheight 668pt
\topmargin -90pt %<br>
+
\topmargin -90pt
\oddsidemargin -80pt %<br>
+
\oddsidemargin -80pt
\textwidth 900pt %<br>
+
\textwidth 900pt
\textheight 900pt %<br>
+
\textheight 900pt
\pagestyle {empty} %<br>
+
\pagestyle {empty}
\newcommand \sx {\scalebox} %<br>
+
\newcommand \sx {\scalebox}
\newcommand \rot {\begin{rotate}} %<br>
+
\newcommand \rot {\begin{rotate}}
\newcommand \ero {\end{rotate}} %<br>
+
\newcommand \ero {\end{rotate}}
\newcommand \ing {\includegraphics} %<br>
+
\newcommand \ing {\includegraphics}
\begin{document} %<br>
+
\begin{document}
 
\parindent 0pt
 
\parindent 0pt
\sx{2}{ \begin{picture}(220,323) %<br>
+
\sx{2}{ \begin{picture}(220,323)
\put(4,6){\ing{acosplot}} %<br>
+
\put(4,6){\ing{acosplot}}
\put(0,323){\sx{1.8}{$y$}} %<br>
+
\put(0,323){\sx{1.8}{$y$}}
%\put(2,309){\sx{1.8}{$3$}} %<br>
+
%\put(2,309){\sx{1.8}{$3$}}
\put(0,210){\sx{1.8}{$2$}} %<br>
+
\put(0,210){\sx{1.8}{$2$}}
\put(0,110){\sx{1.8}{$1$}} %<br>
+
\put(0,110){\sx{1.8}{$1$}}
\put(0, 10){\sx{1.8}{$0$}} %<br>
+
\put(0, 10){\sx{1.8}{$0$}}
\put(1, 0){\sx{1.8}{$-\!1$}} %<br>
+
\put(1, 0){\sx{1.8}{$-\!1$}}
\put(110, 0){\sx{1.8}{$0$}} %<br>
+
\put(110, 0){\sx{1.8}{$0$}}
\put(204, 0){\sx{1.9}{$x$}} %<br>
+
\put(204, 0){\sx{1.9}{$x$}}
 
\put(117,180){\sx{1.6}{\rot{-45}$y\!=\!\mathrm{acos}(x)$\ero}}
 
\put(117,180){\sx{1.6}{\rot{-45}$y\!=\!\mathrm{acos}(x)$\ero}}
\end{picture} %<br>
+
\end{picture}
} %<br>
+
}
 
\end{document}
 
\end{document}
</nowiki>
+
</pre>
   
 
==Keywords==
 
==Keywords==
[[ArcCos]],
+
«[[ArcCos]]»,
[[Inverse function]],
+
«[[Inverse function]]»,
[[Explicit plot]],
+
«[[Explicit plot]]»,
[[Elementary function]]
+
«[[Elementary function]]»,
 
   
[[Category:ArcCos]],
+
[[Category:ArcCos]]
[[Category:inverse function]],
+
[[Category:inverse function]]
[[Category:Explicit plot]],
+
[[Category:Explicit plot]]
 
[[Category:Elementary function]]
 
[[Category:Elementary function]]

Latest revision as of 09:19, 16 August 2025


Explicit plot of function ArcCos.

\(y=\mathrm{acos}(x)\)

is plotted versus \(x\).

The plot is loaded as one of tests of the complex double implementation of function "acos".

However, the same curve can be plotted with the C++ build-in double function "acos".

C++ generator of curve

//File ado.cin should be loaded in the cuffent directory for the compilation of the C++ code below:

 #include <math.h> 
 #include <stdio.h>
 #include <stdlib.h>
 #define DB double 
 #define DO(x,y) for(x=0;x<y;x++)
 using namespace std;
 #include <complex>
 typedef complex<double> z_type;
 #define Re(x) x.real()
 #define Im(x) x.imag()
 #define I z_type(0.,1.)
 #include "ado.cin"

 z_type acos(z_type z){
 if(Im(z)<0){if(Re(z)>=0){return  I*log( z + sqrt(z*z-1.) );} 
                     else{return  I*log( z - sqrt(z*z-1.) );}}
             if(Re(z)>=0){return -I*log( z + sqrt(z*z-1.) );} 
                    else {return -I*log( z - sqrt(z*z-1.) );} }

 #define M(x,y) fprintf(o,"%6.4f %6.4f M\n",0.+x,0.+y);
 #define L(x,y) fprintf(o,"%6.4f %6.4f L\n",0.+x,0.+y);
 #define S(x,y) fprintf(o,"S\n",);

 main(){ int j,k,m,n; DB x,y, p,q, t; z_type z,c,d;
 FILE *o;o=fopen("acosplot.eps","w");ado(o,220,330);
 fprintf(o,"110 10 translate\n 100 100 scale\n");
 for(m=-1;m<2;m++){M(m,0)L(m,3)}
 for(n=0;n<4;n++){M(-1,n)L(1,n)}
 fprintf(o,"2 setlinecap .01 W 0 0 0 RGB S\n");
 DO(m,2001){ x=-1.+.001*m; z=x; y=Re(acos(z)); if(m==0)M(x,y) else L(x,y) }
 fprintf(o,"1 setlinejoin 1 setlinecap .02 W .5 0 0 RGB S\n"); p=1.8;q=.7;
 fprintf(o,"showpage\n%c%cTrailer",'%','%'); fclose(o);
       system("epstopdf acosplot.eps");
       system(    "open acosplot.pdf");
       getchar(); system("killall Preview");//for mac
 }

Latex generator of labels

 % Copyleft 2012 by Dmitrii Kouznetsov
 \documentclass[12pt]{article}
 \usepackage{geometry}
 \usepackage{graphicx}
 \usepackage{rotating}
 \paperwidth 432pt
 \paperheight 668pt
 \topmargin -90pt
 \oddsidemargin -80pt
 \textwidth 900pt
 \textheight 900pt
 \pagestyle {empty}
 \newcommand \sx {\scalebox}
 \newcommand \rot {\begin{rotate}}
 \newcommand \ero {\end{rotate}}
 \newcommand \ing {\includegraphics}
 \begin{document}
 \parindent 0pt
\sx{2}{ \begin{picture}(220,323)
 \put(4,6){\ing{acosplot}}
 \put(0,323){\sx{1.8}{$y$}}
 %\put(2,309){\sx{1.8}{$3$}}
 \put(0,210){\sx{1.8}{$2$}}
 \put(0,110){\sx{1.8}{$1$}}
 \put(0, 10){\sx{1.8}{$0$}}
 \put(1, 0){\sx{1.8}{$-\!1$}}
 \put(110, 0){\sx{1.8}{$0$}}
 \put(204, 0){\sx{1.9}{$x$}}
 \put(117,180){\sx{1.6}{\rot{-45}$y\!=\!\mathrm{acos}(x)$\ero}}
 \end{picture}
 }
 \end{document}

Keywords

«ArcCos», «Inverse function», «Explicit plot», «Elementary function»,

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current17:50, 20 June 2013Thumbnail for version as of 17:50, 20 June 2013897 × 1,387 (69 KB)Maintenance script (talk | contribs)Importing image file

The following page uses this file:

Metadata