Sponsored Content
Contact Us Post Here to Contact Site Administrators and Moderators Request: Announcing a project Post 302926219 by sea on Friday 21st of November 2014 09:42:44 PM
Old 11-21-2014
Request: Announcing a project

Hello

Eventhough i've been using it myself to write some scripts, which i share already, it is just within about the next 2 weeks it will be 'stable' enough (at the step from beta (2 years) to alpha) to actualy present it by its own.

I'm talking about: TUI - (line-based) Text User Interface.

https://github.com/sri-arjuna/tui

Its GPLv3 and i am the author of it.


Since advertisments generaly are not allowed, i would like to ask if i may advertise/announce it when its ready to?
Specialy since my aim was for it to be functional on diffrent flavors, to me, this forum would be a great place to gather (possible) feedback and offer it to a wide/r audience.
Evenmore, possibly increase its functionality.

Thank you and kind regards
Simon
 

3 More Discussions You Might Find Interesting

1. Solaris

SSH doesn't pick up user's project from /etc/project

We have a system running ssh. When a user logs in, they do not get the project they are assigned to (they run under "system"). I verify the project using the command "ps -e -o user,pid,ppid,args,project". If you do a "su - username", the user does get the project they are assigned to (and all... (2 Replies)
Discussion started by: kurgan
2 Replies

2. News, Links, Events and Announcements

Announcing the World’s First OLTP Database Machine with Sun FlashFire Technology

The Sun/Oracle deal is on a good way... Sun Microsystems: An Invitation Larry Ellison Invites You to a Live Oracle and Sun Product Launch (1 Reply)
Discussion started by: DukeNuke2
1 Replies

3. News, Links, Events and Announcements

A new project was posted on The UNIX and Linux Forums project board.

A new project was posted on your project board. Project title: Bash Shell Tutoring Estimated Budget: $50/hr Start date: Immediately Required skills: Linux, Bash, Shell, UNIX I work as a datawarehouse designer and developer. Although I usually stick to the role of an analyst,... (0 Replies)
Discussion started by: Neo
0 Replies
ZLAGTM(l)								 )								 ZLAGTM(l)

NAME
ZLAGTM - perform a matrix-vector product of the form B := alpha * A * X + beta * B where A is a tridiagonal matrix of order N, B and X are N by NRHS matrices, and alpha and beta are real scalars, each of which may be 0., 1., or -1 SYNOPSIS
SUBROUTINE ZLAGTM( TRANS, N, NRHS, ALPHA, DL, D, DU, X, LDX, BETA, B, LDB ) CHARACTER TRANS INTEGER LDB, LDX, N, NRHS DOUBLE PRECISION ALPHA, BETA COMPLEX*16 B( LDB, * ), D( * ), DL( * ), DU( * ), X( LDX, * ) PURPOSE
ZLAGTM performs a matrix-vector product of the form B := alpha * A * X + beta * B where A is a tridiagonal matrix of order N, B and X are N by NRHS matrices, and alpha and beta are real scalars, each of which may be 0., 1., or -1. ARGUMENTS
TRANS (input) CHARACTER Specifies the operation applied to A. = 'N': No transpose, B := alpha * A * X + beta * B = 'T': Transpose, B := alpha * A**T * X + beta * B = 'C': Conjugate transpose, B := alpha * A**H * X + beta * B N (input) INTEGER The order of the matrix A. N >= 0. NRHS (input) INTEGER The number of right hand sides, i.e., the number of columns of the matrices X and B. ALPHA (input) DOUBLE PRECISION The scalar alpha. ALPHA must be 0., 1., or -1.; otherwise, it is assumed to be 0. DL (input) COMPLEX*16 array, dimension (N-1) The (n-1) sub-diagonal elements of T. D (input) COMPLEX*16 array, dimension (N) The diagonal elements of T. DU (input) COMPLEX*16 array, dimension (N-1) The (n-1) super-diagonal elements of T. X (input) COMPLEX*16 array, dimension (LDX,NRHS) The N by NRHS matrix X. LDX (input) INTEGER The leading dimension of the array X. LDX >= max(N,1). BETA (input) DOUBLE PRECISION The scalar beta. BETA must be 0., 1., or -1.; otherwise, it is assumed to be 1. B (input/output) COMPLEX*16 array, dimension (LDB,NRHS) On entry, the N by NRHS matrix B. On exit, B is overwritten by the matrix expression B := alpha * A * X + beta * B. LDB (input) INTEGER The leading dimension of the array B. LDB >= max(N,1). LAPACK version 3.0 15 June 2000 ZLAGTM(l)
All times are GMT -4. The time now is 01:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy