R語言
abIseq
位於 Matrix
包(package)。 說明
生成抽象索引向量,即類 "abIndex"
的對象。
abIseq()
被設計成完全像seq
,但產生"abIndex"
向量。
abIseq1()
是它的基本構建塊,其中abIseq1(n,m)
對應於n:m
.
當 x
為 1 時,c(x, ...)
將返回 "abIndex"
向量。
用法
abIseq1(from = 1, to = 1)
abIseq (from = 1, to = 1, by = ((to - from)/(length.out - 1)),
length.out = NULL, along.with = NULL)
## S3 method for class 'abIndex'
c(...)
參數
from , to |
序列的起始值和(最大)結束值。 |
by |
number:序列的增量。 |
length.out |
所需的序列長度。非負數,對於 |
along.with |
從此參數的長度中獲取長度。 |
... |
一般來說,任意數量的R物體;在這裏,當第一個是 |
值
抽象索引向量,即類 "abIndex"
的對象。
例子
stopifnot(identical(-3:20,
as(abIseq1(-3,20), "vector")))
try( ## (arithmetic) not yet implemented
abIseq(1, 50, by = 3)
)
也可以看看
相關用法
- R abIndex-class 抽象索引向量的“abIndex”類
- R all.equal-methods 函數 all.equal() 的矩陣封裝方法
- R all-methods 函數 all() 和 any() 的“矩陣”方法
- R atomicVector-class 原子向量的虛擬類“atomicVector”
- R dtrMatrix-class 三角形稠密數值矩陣
- R facmul-methods 乘以矩陣因式分解的因數
- R solve-methods 函數求解矩陣包中的方法
- R updown-methods 更新和降級稀疏 Cholesky 分解
- R bdiag 構建分塊對角矩陣
- R printSpMatrix 靈活格式化和打印稀疏矩陣
- R symmetricMatrix-class 包矩陣中對稱矩陣的虛擬類
- R boolmatmult-methods 布爾算術矩陣乘積:%&% 和方法
- R ltrMatrix-class 三角密集邏輯矩陣
- R Hilbert 生成希爾伯特矩陣
- R nearPD 最近正定矩陣
- R lsyMatrix-class 對稱密集邏輯矩陣
- R CHMfactor-class 稀疏 Cholesky 分解
- R symmpart-methods 矩陣的對稱部分和偏斜(對稱)部分
- R sparseMatrix 從非零項構建一般稀疏矩陣
- R dgCMatrix-class 壓縮、稀疏、麵向列的數值矩陣
- R Cholesky-methods Cholesky 分解方法
- R Subassign-methods “[<-”的方法 - 分配給“矩陣”的子集
- R ldenseMatrix-class 密集邏輯矩陣的虛擬類“ldenseMatrix”
- R norm-methods 矩陣範數
- R ngeMatrix-class 一般密集非零模式矩陣的“ngeMatrix”類
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Sequence Generation of "abIndex", Abstract Index Vectors。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。