diff options
author | rupak | 2020-01-21 19:05:09 +0530 |
---|---|---|
committer | rupak | 2020-01-21 19:05:09 +0530 |
commit | d2f4d30ebcad7430e4f0495cae5c2b3a16be73ce (patch) | |
tree | 8987d169ad87e930f137122a450c02dc5d13dcc5 /macros/gflineq.sci | |
parent | 36aca8aaaee5cf8cb5452268fd07c0b558b000a3 (diff) | |
download | FOSSEE-Communication-Systems-Toolbox-d2f4d30ebcad7430e4f0495cae5c2b3a16be73ce.tar.gz FOSSEE-Communication-Systems-Toolbox-d2f4d30ebcad7430e4f0495cae5c2b3a16be73ce.tar.bz2 FOSSEE-Communication-Systems-Toolbox-d2f4d30ebcad7430e4f0495cae5c2b3a16be73ce.zip |
Diffstat (limited to 'macros/gflineq.sci')
-rw-r--r-- | macros/gflineq.sci | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/macros/gflineq.sci b/macros/gflineq.sci index 3b34529..0a2b33d 100644 --- a/macros/gflineq.sci +++ b/macros/gflineq.sci @@ -13,7 +13,7 @@ function [x, sflag] = gflineq(a, b, p) // equation A X = B in GF(P) and SFLAG=1. // If the equation has no solution, then X is empty and SFLAG = 0. // - +// // Examples // A=[1 0 1; 1 1 0; 1 1 1] // p=3 @@ -26,12 +26,9 @@ function [x, sflag] = gflineq(a, b, p) // disp('Linear equation has no solution and x is empty') // end // disp( pmodulo(A*x,p),'B =') - -// See also -// gfadd, gfconv, gfdiv, gfrank, gfroots - +// // Authors -// Pola Lakshmi Priyanka, IIT Bombay// +// Pola Lakshmi Priyanka, IIT Bombay //*************************************************************************************************************************************// |