The R Project SVN R

Rev

Rev 85445 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 85445 Rev 87065
Line 1... Line 1...
1
 
1
 
2
R Under development (unstable) (2023-10-23 r85391) -- "Unsuffered Consequences"
2
R Under development (unstable) (2024-08-27 r87063) -- "Unsuffered Consequences"
3
Copyright (C) 2023 The R Foundation for Statistical Computing
3
Copyright (C) 2024 The R Foundation for Statistical Computing
4
Platform: aarch64-apple-darwin22.6.0
4
Platform: x86_64-pc-linux-gnu
5
 
5
 
6
R is free software and comes with ABSOLUTELY NO WARRANTY.
6
R is free software and comes with ABSOLUTELY NO WARRANTY.
7
You are welcome to redistribute it under certain conditions.
7
You are welcome to redistribute it under certain conditions.
8
Type 'license()' or 'licence()' for distribution details.
8
Type 'license()' or 'licence()' for distribution details.
9
 
9
 
Line 54... Line 54...
54
+     stopifnot(is.environment(env))
54
+     stopifnot(is.environment(env))
55
+     for (nm in ls(envir = env)) {
55
+     for (nm in ls(envir = env)) {
56
+         cat(nm, ": ", sep = .... [TRUNCATED] 
56
+         cat(nm, ": ", sep = .... [TRUNCATED] 
57
> rm("srcdir")
57
> rm("srcdir")
58
> 
58
> 
59
> require("Matrix")
59
> require("Matrix", .Library)
60
Loading required package: Matrix
60
Loading required package: Matrix
61
> D5. <- Diagonal(x = 5:1)
61
> D5. <- Diagonal(x = 5:1)
62
> D5N <- D5.; D5N[5,5] <- NA
62
> D5N <- D5.; D5N[5,5] <- NA
63
> ## a subset/version of example(Matrix) : --------------------------------
63
> ## a subset/version of example(Matrix) : --------------------------------
64
> 
64
>