circle_matrix {jjb} | R Documentation |
Create a circle pattern within a matrix
Description
Takes a default matrix and embeds circles within the matrix.
Usage
circle_matrix(m, n, x.center, y.center, r, f = 1)
Arguments
m |
A |
n |
A |
x.center |
A |
y.center |
A |
r |
A |
f |
A |
Value
A matrix
with circles imprinted within its dimensions.
Author(s)
James Balamuta
Examples
# Generate a basic circle matrix
circle_matrix(10, 10, 3, 4, 2)
# Generate two circles within the matrix
circle_matrix(10, 20, c(3,6), c(4,6), c(2,2))
# Different fills
circle_matrix(10, 20, c(3,6), c(4,6), c(2,2), f = c(1,2))
[Package jjb version 0.1.1 Index]