|
1496 | 1496 |
|
1497 | 1497 | "),
|
1498 | 1498 |
|
| 1499 | +("I/O","Base","readbytes!","readbytes!(stream, b::Vector{Uint8}, nb=length(b)) |
| 1500 | +
|
| 1501 | + Read at most nb bytes from the stream into b, returning the number |
| 1502 | + of bytes read (increasing the size of b as needed). |
| 1503 | +
|
| 1504 | +"), |
| 1505 | + |
| 1506 | +("I/O","Base","readbytes","readbytes(stream, nb=typemax(Int)) |
| 1507 | +
|
| 1508 | + Read at most nb bytes from the stream, returning a Vector{Uint8} of |
| 1509 | + the bytes read. |
| 1510 | +
|
| 1511 | +"), |
| 1512 | + |
1499 | 1513 | ("I/O","Base","position","position(s)
|
1500 | 1514 |
|
1501 | 1515 | Get the current position of a stream.
|
|
1586 | 1600 |
|
1587 | 1601 | "),
|
1588 | 1602 |
|
1589 |
| -("Network I/O","Base","connect","connect(path) -> NamedPipe |
| 1603 | +("Network I/O","Base","connect","connect(path) -> Pipe |
1590 | 1604 |
|
1591 | 1605 | Connect to the Named Pipe/Domain Socket at \"path\"
|
1592 | 1606 |
|
|
1667 | 1681 |
|
1668 | 1682 | "),
|
1669 | 1683 |
|
1670 |
| -("I/O","Base","readbytes!","readbytes!(stream, b::Vector{Uint8}, nb=length(b)) |
1671 |
| -
|
1672 |
| - Read up to nb bytes from the stream into b, returning the |
1673 |
| - number of bytes read (increasing the size of b as needed). |
1674 |
| -
|
1675 |
| -"), |
1676 |
| - |
1677 |
| -("I/O","Base","readbytes","readbytes(stream, nb=typemax(Int)) |
1678 |
| -
|
1679 |
| - Read at most nb bytes from the stream, returning a |
1680 |
| - Vector{Uint8} of the bytes read. |
1681 |
| -
|
1682 |
| -"), |
1683 |
| - |
1684 |
| -("Text I/O","Base","readall","readall(stream) |
1685 |
| -
|
1686 |
| - Read the entire contents of an I/O stream as a string. |
1687 |
| -
|
1688 |
| -"), |
1689 |
| - |
1690 | 1684 | ("Text I/O","Base","readline","readline(stream)
|
1691 | 1685 |
|
1692 | 1686 | Read a single line of text, including a trailing newline character
|
|
4102 | 4096 |
|
4103 | 4097 | ("Statistics","Base","std","std(v[, region])
|
4104 | 4098 |
|
4105 |
| - Compute the sample standard deviation of a vector or array``v``, |
| 4099 | + Compute the sample standard deviation of a vector or array \"v\", |
4106 | 4100 | optionally along dimensions in \"region\". The algorithm returns an
|
4107 | 4101 | estimator of the generative distribution's standard deviation under
|
4108 | 4102 | the assumption that each entry of \"v\" is an IID draw from that
|
|
4120 | 4114 |
|
4121 | 4115 | ("Statistics","Base","var","var(v[, region])
|
4122 | 4116 |
|
4123 |
| - Compute the sample variance of a vector or array``v``, optionally |
| 4117 | + Compute the sample variance of a vector or array \"v\", optionally |
4124 | 4118 | along dimensions in \"region\". The algorithm will return an
|
4125 | 4119 | estimator of the generative distribution's variance under the
|
4126 | 4120 | assumption that each entry of \"v\" is an IID draw from that
|
|
4155 | 4149 |
|
4156 | 4150 | Compute the histogram of \"v\" using a vector/range \"e\" as the
|
4157 | 4151 | edges for the bins. The result will be a vector of length
|
4158 |
| - \"length(e) - 1\", with the \"i``th element being ``sum(e[i] .< v |
4159 |
| - .<= e[i+1])\". |
| 4152 | + \"length(e) - 1\", such that the element at location \"i\" |
| 4153 | + satisfies \"sum(e[i] .< v .<= e[i+1])\". |
4160 | 4154 |
|
4161 | 4155 | "),
|
4162 | 4156 |
|
|
5826 | 5820 |
|
5827 | 5821 | "),
|
5828 | 5822 |
|
| 5823 | +("Graphics","Base","Vec2","Vec2(x, y) |
| 5824 | +
|
| 5825 | + Creates a point in two dimensions |
| 5826 | +
|
| 5827 | +"), |
| 5828 | + |
| 5829 | +("Graphics","Base","BoundingBox","BoundingBox(xmin, xmax, ymin, ymax) |
| 5830 | +
|
| 5831 | + Creates a box in two dimensions with the given edges |
| 5832 | +
|
| 5833 | +"), |
| 5834 | + |
| 5835 | +("Graphics","Base","BoundingBox","BoundingBox(objs...) |
| 5836 | +
|
| 5837 | + Creates a box in two dimensions that encloses all objects |
| 5838 | +
|
| 5839 | +"), |
| 5840 | + |
| 5841 | +("Graphics","Base","width","width(obj) |
| 5842 | +
|
| 5843 | + Computes the width of an object |
| 5844 | +
|
| 5845 | +"), |
| 5846 | + |
| 5847 | +("Graphics","Base","height","height(obj) |
| 5848 | +
|
| 5849 | + Computes the height of an object |
| 5850 | +
|
| 5851 | +"), |
| 5852 | + |
| 5853 | +("Graphics","Base","xmin","xmin(obj) |
| 5854 | +
|
| 5855 | + Computes the minimum x-coordinate contained in an object |
| 5856 | +
|
| 5857 | +"), |
| 5858 | + |
| 5859 | +("Graphics","Base","xmax","xmax(obj) |
| 5860 | +
|
| 5861 | + Computes the maximum x-coordinate contained in an object |
| 5862 | +
|
| 5863 | +"), |
| 5864 | + |
| 5865 | +("Graphics","Base","ymin","ymin(obj) |
| 5866 | +
|
| 5867 | + Computes the minimum y-coordinate contained in an object |
| 5868 | +
|
| 5869 | +"), |
| 5870 | + |
| 5871 | +("Graphics","Base","ymax","ymax(obj) |
| 5872 | +
|
| 5873 | + Computes the maximum y-coordinate contained in an object |
| 5874 | +
|
| 5875 | +"), |
| 5876 | + |
| 5877 | +("Graphics","Base","diagonal","diagonal(obj) |
| 5878 | +
|
| 5879 | + Return the length of the diagonal of an object |
| 5880 | +
|
| 5881 | +"), |
| 5882 | + |
| 5883 | +("Graphics","Base","aspect_ratio","aspect_ratio(obj) |
| 5884 | +
|
| 5885 | + Compute the height/width of an object |
| 5886 | +
|
| 5887 | +"), |
| 5888 | + |
| 5889 | +("Graphics","Base","center","center(obj) |
| 5890 | +
|
| 5891 | + Return the point in the center of an object |
| 5892 | +
|
| 5893 | +"), |
| 5894 | + |
| 5895 | +("Graphics","Base","xrange","xrange(obj) |
| 5896 | +
|
| 5897 | + Returns a tuple \"(xmin(obj), xmax(obj))\" |
| 5898 | +
|
| 5899 | +"), |
| 5900 | + |
| 5901 | +("Graphics","Base","yrange","yrange(obj) |
| 5902 | +
|
| 5903 | + Returns a tuple \"(ymin(obj), ymax(obj))\" |
| 5904 | +
|
| 5905 | +"), |
| 5906 | + |
| 5907 | +("Graphics","Base","rotate","rotate(obj, angle, origin) -> newobj |
| 5908 | +
|
| 5909 | + Rotates an object around origin by the specified angle (radians), |
| 5910 | + returning a new object of the same type. Because of type- |
| 5911 | + constancy, this new object may not always be a strict geometric |
| 5912 | + rotation of the input; for example, if \"obj\" is a \"BoundingBox\" |
| 5913 | + the return is the smallest \"BoundingBox\" that encloses the |
| 5914 | + rotated input. |
| 5915 | +
|
| 5916 | +"), |
| 5917 | + |
| 5918 | +("Graphics","Base","shift","shift(obj, dx, dy) |
| 5919 | +
|
| 5920 | + Returns an object shifted horizontally and vertically by the |
| 5921 | + indicated amounts |
| 5922 | +
|
| 5923 | +"), |
| 5924 | + |
| 5925 | +("Graphics","Base","*","*(obj, s::Real) |
| 5926 | +
|
| 5927 | + Scale the width and height of a graphics object, keeping the center |
| 5928 | + fixed |
| 5929 | +
|
| 5930 | +"), |
| 5931 | + |
| 5932 | +("Graphics","Base","+","+(bb1::BoundingBox, bb2::BoundingBox) -> BoundingBox |
| 5933 | +
|
| 5934 | + Returns the smallest box containing both boxes |
| 5935 | +
|
| 5936 | +"), |
| 5937 | + |
| 5938 | +("Graphics","Base","deform","deform(bb::BoundingBox, dxmin, dxmax, dymin, dymax) |
| 5939 | +
|
| 5940 | + Returns a bounding box with all edges shifted by the indicated |
| 5941 | + amounts |
| 5942 | +
|
| 5943 | +"), |
| 5944 | + |
| 5945 | +("Graphics","Base","isinside","isinside(bb::BoundingBox, x, y) |
| 5946 | +
|
| 5947 | + True if the given point is inside the box |
| 5948 | +
|
| 5949 | +"), |
| 5950 | + |
| 5951 | +("Graphics","Base","isinside","isinside(bb::BoundingBox, point) |
| 5952 | +
|
| 5953 | + True if the given point is inside the box |
| 5954 | +
|
| 5955 | +"), |
| 5956 | + |
5829 | 5957 |
|
5830 | 5958 | ("Linear Algebra","Base","*","*(A, B)
|
5831 | 5959 |
|
|
0 commit comments