matrix_create: Create a Matrix

Description Usage Arguments Value Examples

View source: R/matrix_create.R

Description

Create a Matrix where you only need to specify which numbers you have to put in, and how it should be organiszed.

Usage

1
matrix_create(string, nr1, nr2)

Arguments

string

Numbers to put in the matrix

nr1

Number of rows

nr2

Number of columns

Value

A matrix

Examples

1
2
string <- c(1,1,1,1,1,1)
matrix_create(string, 2,2)

lucasbagge/LinAlg4 documentation built on March 15, 2020, 6:43 a.m.