📄 datapoints.html,v
字号:
<BR> creates a set of point that correspond to a gaussians distribution</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="DataPoints.html#setOverGaussian(DisplayScale)">setOverGaussian</A></B>(DisplayScale scale)</CODE><BR> create a set of point that correspond to two overlapped gaussians to be displayed on the input canvas</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="DataPoints.html#setRotatedEllipses(DisplayScale)">setRotatedEllipses</A></B>(DisplayScale scale)</CODE><BR> create a set of point that correspond to two rotated ellipses to be displayed on the input canvas</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="DataPoints.html#setToroidal(DisplayScale)">setToroidal</A></B>(DisplayScale scale)</CODE><BR> create a set of point that correspond a toroidal to be displayed on the input canvas</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="DataPoints.html#setTwoEllipses(DisplayScale)">setTwoEllipses</A></B>(DisplayScale scale)</CODE><BR> create a set of point that correspond to two ellipses to be displayed on the input canvas</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="DataPoints.html#setTwoGaussian(DisplayScale)">setTwoGaussian</A></B>(DisplayScale scale)</CODE><BR> create a set of point that correspond to two gaussians to be displayed on the input canvas</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="DataPoints.html#setYinYang(DisplayScale)">setYinYang</A></B>(DisplayScale scale)</CODE><BR> create a set of point that correspond a yin and yang symbol to be displayed on the input canvas</TD></TR></TABLE> <A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"><TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD></TR></TABLE> <P><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"><B>Method Detail</B></FONT></TH></TR></TABLE><A NAME="initialize()"><!-- --></A><H3>initialize</H3><PRE>public boolean <B>initialize</B>()</PRE><DL><DD>initializes dset1-dset4<P><DD><DL><DT><B>Returns:</B><DD>true</DL></DD></DL><HR><A NAME="isDataValid()"><!-- --></A><H3>isDataValid</H3><PRE>public boolean <B>isDataValid</B>()</PRE><DL><DD>method returns true if valid data is present else it returns false<P><DD><DL><DT><B>Returns:</B><DD>true if data is valid</DL></DD></DL><HR><A NAME="clearAllSets()"><!-- --></A><H3>clearAllSets</H3><PRE>public void <B>clearAllSets</B>()</PRE><DL><DD>clear out all point form the data sets<P><DD><DL></DL></DD></DL><HR><A NAME="addPoint(MyPoint)"><!-- --></A><H3>addPoint</H3><PRE>public void <B>addPoint</B>(MyPoint p)</PRE><DL><DD>add a point to the data set that is determined by the index (setNum)<P><DD><DL><DT><B>Parameters:</B><DD><CODE>p</CODE> - point to be added to the input data class</DL></DD></DL><HR><A NAME="drawGaussian(double, double, DisplayScale)"><!-- --></A><H3>drawGaussian</H3><PRE>public void <B>drawGaussian</B>(double meanx, double meany, DisplayScale scale)</PRE><DL><DD>Draws Gaussian distribution by calling setGaussian()<P><DD><DL><DT><B>Parameters:</B><DD><CODE>meanx</CODE> - double x value of mean point<DD><CODE>meany</CODE> - double y value of mean point<DD><CODE>scale</CODE> - DisplayScale variable used for displaying</DL></DD></DL><HR><A NAME="setGaussian(int, double, double, double, double, double, double, DisplayScale)"><!-- --></A><H3>setGaussian</H3><PRE>public void <B>setGaussian</B>(int points, double meanx, double meany, double c11, double c12, double c21, double c22, DisplayScale scale)</PRE><DL><DD>creates a set of point that correspond to a gaussians distribution<P><DD><DL><DT><B>Parameters:</B><DD><CODE>points</CODE> - max points in the distribution<DD><CODE>meanx</CODE> - mean (x) of the distribution<DD><CODE>meany</CODE> - mean (y) of the distribution<DD><CODE>c11</CODE> - covariance matrix element c11<DD><CODE>c12</CODE> - covariance matrix element c12<DD><CODE>c21</CODE> - covariance matrix element c21<DD><CODE>c22</CODE> - covariance matrix element c22<DD><CODE>scale</CODE> - DisplayScale variable</DL></DD></DL><HR><A NAME="setTwoGaussian(DisplayScale)"><!-- --></A><H3>setTwoGaussian</H3><PRE>public void <B>setTwoGaussian</B>(DisplayScale scale)</PRE><DL><DD>create a set of point that correspond to two gaussians to be displayed on the input canvas<P><DD><DL><DT><B>Parameters:</B><DD><CODE>scale</CODE> - DisplayScale variable used for displaying</DL></DD></DL><HR><A NAME="setFourGaussian(DisplayScale)"><!-- --></A><H3>setFourGaussian</H3><PRE>public void <B>setFourGaussian</B>(DisplayScale scale)</PRE><DL><DD>create a set of point that correspond to four gaussians to be displayed on the input canvas method: setFourGaussian<P><DD><DL><DT><B>Parameters:</B><DD><CODE>scale</CODE> - DisplayScale variable used for displaying</DL></DD></DL><HR><A NAME="setOverGaussian(DisplayScale)"><!-- --></A><H3>setOverGaussian</H3><PRE>public void <B>setOverGaussian</B>(DisplayScale scale)</PRE><DL><DD>create a set of point that correspond to two overlapped gaussians to be displayed on the input canvas<P><DD><DL><DT><B>Parameters:</B><DD><CODE>scale</CODE> - DisplayScale variable used for displaying</DL></DD></DL><HR><A NAME="setTwoEllipses(DisplayScale)"><!-- --></A><H3>setTwoEllipses</H3><PRE>public void <B>setTwoEllipses</B>(DisplayScale scale)</PRE><DL><DD>create a set of point that correspond to two ellipses to be displayed on the input canvas<P><DD><DL><DT><B>Parameters:</B><DD><CODE>scale</CODE> - DisplayScale variable used for displaying</DL></DD></DL><HR><A NAME="setRotatedEllipses(DisplayScale)"><!-- --></A><H3>setRotatedEllipses</H3><PRE>public void <B>setRotatedEllipses</B>(DisplayScale scale)</PRE><DL><DD>create a set of point that correspond to two rotated ellipses to be displayed on the input canvas<P><DD><DL><DT><B>Parameters:</B><DD><CODE>scale</CODE> - DisplayScale variable used for displaying</DL></DD></DL><HR><A NAME="setFourEllipses(DisplayScale)"><!-- --></A><H3>setFourEllipses</H3><PRE>public void <B>setFourEllipses</B>(DisplayScale scale)</PRE><DL><DD>create a set of point that correspond to four ellipses to be displayed on the input canvas<P><DD><DL><DT><B>Parameters:</B><DD><CODE>scale</CODE> - DisplayScale variable used for displaying</DL></DD></DL><HR><A NAME="setToroidal(DisplayScale)"><!-- --></A><H3>setToroidal</H3><PRE>public void <B>setToroidal</B>(DisplayScale scale)</PRE><DL><DD>create a set of point that correspond a toroidal to be displayed on the input canvas<P><DD><DL><DT><B>Parameters:</B><DD><CODE>scale</CODE> - DisplayScale variable used for displaying</DL></DD></DL><HR><A NAME="setYinYang(DisplayScale)"><!-- --></A><H3>setYinYang</H3><PRE>public void <B>setYinYang</B>(DisplayScale scale)</PRE><DL><DD>create a set of point that correspond a yin and yang symbol to be displayed on the input canvas<P><DD><DL><DT><B>Parameters:</B><DD><CODE>scale</CODE> - DisplayScale variable used for viewing</DL></DD></DL><HR><A NAME="convertPoint(java.awt.Point, int, int, DisplayScale)"><!-- --></A><H3>convertPoint</H3><PRE>public static MyPoint <B>convertPoint</B>(java.awt.Point jpoint,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -