writedlm
writedlm(f, A, delim='\t')
Write A
(a vector, matrix or an iterable collection of iterable rows) as text to f
(either a filename string or an IO
stream) using the given delimeter delim
(which defaults to tab, but can be any printable Julia object, typically a Char
or AbstractString
).
For example, two vectors x
and y
of the same length can be written as two columns of tab-delimited text to f
by either writedlm(f, [x y])
or by writedlm(f, zip(x, y))
.
Examples
See Also
Ac_ldiv_B, Ac_ldiv_Bc, Ac_mul_B, Ac_mul_Bc, Ac_rdiv_B, Ac_rdiv_Bc, At_ldiv_B, At_ldiv_Bt, At_mul_B, At_mul_Bt, At_rdiv_B, At_rdiv_Bt, A_ldiv_Bc, A_ldiv_Bt, A_mul_B!, A_mul_Bc, A_mul_Bt, A_rdiv_Bc, A_rdiv_Bt, Bidiagonal, cond, conv2, det, diag, diagind, diagm, diff, eig, eigvals, eigvecs, expm, eye, full, inv, isdiag, ishermitian, isposdef, isposdef!, issym, istril, istriu, logabsdet, logdet, lyap, norm, qrfact, rank, repmat, rot180, rotl90, rotr90, sortrows, sqrtm, SymTridiagonal, trace, Tridiagonal, tril, tril!, triu, triu!, writedlm,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.