[sage-support] Modular Exponentiation

2011-03-16 Thread Santanu Sarkar
How one can calculate a^b mod c in Sage for large b? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support

[sage-support] Random Permutation

2011-03-04 Thread Santanu Sarkar
How one can generate random permutation over the set A={1,2,...,50}? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at

Re: [sage-support] Re: In ' while ' or ' for ' loop in Sage, can one use ' { ' and ' } ' like C program?

2011-02-25 Thread Santanu Sarkar
Thank you very much. On 25 February 2011 02:22, William Stein wst...@gmail.com wrote: On Wed, Feb 23, 2011 at 10:54 PM, Jason Grout jason-s...@creativetrax.com wrote: On 2/24/11 12:49 AM, Santanu Sarkar wrote: In ' while ' or ' for ' loop in Sage, can one use ' { ' and ' } ' like C program

[sage-support] In ' while ' or ' for ' loop in Sage, can one use ' { ' and ' } ' like C program?

2011-02-23 Thread Santanu Sarkar
-- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org

[Assam] (no subject)

2011-02-16 Thread Roy, Santanu
Sent from my iPhone ___ assam mailing list assam@assamnet.org http://assamnet.org/mailman/listinfo/assam_assamnet.org

[sage-support] Integration

2011-02-06 Thread Santanu Sarkar
How one can find integral abs(cos(x+y)) where x varies from 0 to pi and y varies from 0 to pi in Sage? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group

[sage-support] L2 algorithm

2011-01-30 Thread Santanu Sarkar
Weather L2-algorithm of Nguyen,and Stehl´e is implemented in Sage? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at

[sage-support] Ideal and Groebner Basis

2011-01-28 Thread Santanu Sarkar
Suppose in an array A[100], I have 100 polynomials over R.x,y,z=QQ[] I first want to construct an ideal generated by this polynomial. Then I want to find the Groebner Basis. How this can be done in Sage? When we have three polynomials f1,f2,f3 we use the following. I=(f1,f2,f3)*R

Re: [sage-support] Re: Ideal and Groebner Basis

2011-01-28 Thread Santanu Sarkar
Thank you. This approach works well. On 28 January 2011 20:04, Simon King simon.k...@uni-jena.de wrote: Hi, On 28 Jan., 15:19, Santanu Sarkar sarkar.santanu@gmail.com wrote: Suppose in an array A[100], I have 100 polynomials over R.x,y,z=QQ[] I first want to construct an ideal generated

[sage-support] Resultant of two polynomials

2011-01-26 Thread Santanu Sarkar
I have two polynomials F(x,y,z) and G(x,y,z) over integer. From F, G I want to eliminate z by resultant method. How can I do this? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For

Re: [sage-support] Re: Resultant of two polynomials

2011-01-26 Thread Santanu Sarkar
Thank you. On 26 January 2011 18:20, John Cremona john.crem...@gmail.com wrote: On Jan 26, 8:09 am, Santanu Sarkar sarkar.santanu@gmail.com wrote: I have two polynomials F(x,y,z) and G(x,y,z) over integer. From F, G I want to eliminate z by resultant method. How can I do this? From

[R] Reading large SAS dataset in R

2011-01-05 Thread Santanu Pramanik
(libname=R:/, sectionnames=test, sascmd=file.path(sashome, sas.exe)) Please let me know where I am making the mistake. Is it because of the size of the file or the location of the file (in server instead of local hard drive)? Thanks in advance, Santanu

[sage-support] complex conjugate of a matrix

2011-01-05 Thread Santanu Sarkar
I define the a matrix M=[x,y, y,x] where x, y are complex variables. Now I want to define another matrix M1 whose elements are conjugate of corresponding elements of M. For example M1[0,0]=conjugate(M[0,0]). How can I do this? -- To post to this group, send email to

[sage-support] Ring Problem

2011-01-04 Thread Santanu Sarkar
How one can define the ring Z_5 (modular ring) in Sage? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at

[sage-support] Solving Math Problem related to RSA Cryptography

2010-12-30 Thread Santanu Sarkar
Let N=pq be RSA modulus with public key e. given an instance (x^e mod N, z mod N) where z an take value either (1+x)^2 or any random value, r belonging to Z_N, with probability 1/2, what can be the known best algorithm to distinguish (x^e mod N, (1+x)^2 mod N) from (x^e mod N, r) ? -- To post

Re: [sage-support] Re: Solving Math Problem related to RSA Cryptography

2010-12-30 Thread Santanu Sarkar
for this question? Where does it come up? -Alasdair On Dec 30, 9:01 pm, Santanu Sarkar sarkar.santanu@gmail.com wrote: Let N=pq be RSA modulus with public key e. given an instance (x^e mod N, z mod N) where z an take value either (1+x)^2 or any random value, r belonging to Z_N

[sage-support] Hermite Normal Form

2010-12-28 Thread Santanu Sarkar
Is there any faster method to compute Hermite Normal Form of a matrix A and corresponding transformation matrix? I use A.hermite_form(transformation=true). However it is very slow. Also is there any transformation matrix corresponding to the LLL algorithm. -- To post to this group, send

Re: [sage-support] Re: Hermite Normal Form

2010-12-28 Thread Santanu Sarkar
2010 22:32, luisfe lftab...@yahoo.es wrote: On Dec 28, 5:27 pm, Santanu Sarkar sarkar.santanu@gmail.com wrote: Is there any faster method to compute Hermite Normal Form of a matrix A and corresponding transformation matrix? I use A.hermite_form(transformation=true). However it is very

Re: [sage-support] Re: Hermite Normal Form

2010-12-28 Thread Santanu Sarkar
Thank you very much. On 28 December 2010 23:56, luisfe lftab...@yahoo.es wrote: On Dec 28, 6:23 pm, Santanu Sarkar sarkar.santanu@gmail.com wrote: Size of my matrix is (90, 36) with entries are around 2^1000. What is the fastest method to compute Hermite Normal Form? In that case

[sage-support] Unimodular Matrix Transformation

2010-12-28 Thread Santanu Sarkar
I have a matrix M=(A : B), where A is a (36, 24) matrix and B (36, 9) is a matrix. I want reduce B by LLL algorithm. And also want to change A (elementary row operation) according to the changes of B. As an example during LLL if 10th row and 12th row of B are interchanged, we also have to

[sage-support] Root finding of a real number

2010-12-22 Thread Santanu Sarkar
How one can find 10-th root of a real number in Sage? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support

[sage-support] unimodular transformation over a matrix

2010-12-02 Thread Santanu Sarkar
Let A be a matrix of order (30,30) and A=(A1, A2 A3, A4) where A1 (24,24), A3 (6,24), A2(24,6) and A4(6,6) with A3 is a zero matrix. We know there is unimodular transformation U such that UA=(B1, B2 B3,B4) with B2(24,6) is a zero

[sage-support] Matrix and LLL

2010-12-02 Thread Santanu Sarkar
I have a matrix A (30,6). After LLL over A, I get a matrix B. How can I find a matrix U such that UA=B in Sage? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit

[sage-support] transformation matrix of LLL

2010-12-02 Thread Santanu Sarkar
Is the transformation matrix of LLL over a non square matrix given in Sage? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at

[sage-support] Groebner basis Question

2010-12-01 Thread Santanu Sarkar
Suppose, u=d_p*d_q v=d_p+d_q w=d_q*k+d_p*l x=k+l y=k*l where dp,dq,k,l are variables. Then, how one can find the relation v*w*x= (v^2 - 2*u)*y + w^2 - 2*u*y + u*x^2 using Groebner Basis in sage? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this

Re: [sage-support] Re: Groebner basis Question

2010-12-01 Thread Santanu Sarkar
] -M. Hampton On Dec 1, 8:04 am, Santanu Sarkar sarkar.santanu@gmail.com wrote: Suppose, u=d_p*d_q v=d_p+d_q w=d_q*k+d_p*l x=k+l y=k*l where dp,dq,k,l are variables. Then, how one can find the relation v*w*x= (v^2 - 2*u)*y + w^2 - 2*u*y + u*x^2 using Groebner Basis

[sage-support] Right inverse of a matrix

2010-12-01 Thread Santanu Sarkar
Let A be a matrix of order (24,6). How one can find a matrix B in Sage of order (6,24) such that AB=Identity matrix? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options,

Re: [Assam] 20th Anniversary

2010-11-15 Thread Roy, Santanu
Dear Debu, That was a great milestone! It also reminds many of us of our younger days. Thanks to you for the beginning and thanks to those who carry the torch forward - Santanu. -Original Message- From: assam-boun...@assamnet.org [mailto:assam-boun...@assamnet.org] On Behalf Of Medhi

Re: [Assam] 20th Anniversary

2010-11-15 Thread Roy, Santanu
Dear Baideu, There is a bright side to not being able to remember what it was like at that time; we can be unfettered in creating stories of our lives. Oh the tales to tell twenty years later ...:) :) Regards, Santanu. -Original Message- From: Alpana B. Sarangapani

[Assam] From BBC

2010-10-21 Thread Roy, Santanu
http://www.bbc.co.uk/news/world-south-asia-11578763 ___ assam mailing list assam@assamnet.org http://assamnet.org/mailman/listinfo/assam_assamnet.org

[sage-support] Array

2010-10-10 Thread Santanu Sarkar
How one can define an array of length 1? For example an array of length 4 is X = [1, 2, 1, 3]. -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at

[Assam] From NYT

2010-10-03 Thread Roy, Santanu
[The New York Times] http://www.nytimes.com/ * .October 2, 2010 Games India Isn’t Ready to PlayBy PANKAJ MISHRA Mashobra, India ON Friday afternoon, public spaces across north India were flooded with policemen and paramilitaries. Thousands of alleged “troublemakers” were arrested. The

Re: [Assam] Where have all the people gone?

2010-09-11 Thread Roy, Santanu
Amazing. I don't know what is more comic: the idea that some organization can encourage unemployed under-matriculate youths to become menial laborers, or the fact that such an idea deserves to appear on print. People do not always choose their livelihood depending on their education, often

Re: [Assam] An article by M Bora (Amar Asom,09.09.2010)

2010-09-09 Thread Roy, Santanu
to revolt against these kids when they grow up - in the clarity and purity of their young minds, the yet unborn children will perhaps seek out their distinct identity before they are assimilated by the giant machine - much like the children of Indian diaspora sometimes do. Santanu

Re: [Assam] An article on Assam

2010-09-03 Thread Roy, Santanu
of citizenship and the greater the incentive for the marginal migrants to move out of Assam. The journey may well continue for some of them. Santanu. -Original Message- From: assam-boun...@assamnet.org [mailto:assam-boun...@assamnet.org] On Behalf Of Chan Mahanta Sent: Friday, August

Re: [Assam] From NY Times - India's Civil Engineering Achievements

2010-08-26 Thread Roy, Santanu
to metallurgical engineering) only to signal their relative strength of innate cleverness or IQ to INFOSYS and other most coveted employers in the IT sector. Santanu. -Original Message- From: assam-boun...@assamnet.org [mailto:assam-boun...@assamnet.org] On Behalf Of Chan Mahanta

Re: [Assam] From NY Times - India's Civil Engineering Achievements

2010-08-26 Thread Roy, Santanu
everywhere. I took my friend from Guwahati for a walk through the only open green space that was probably left in the city. It had disappeared. No place to catch a lungful of fresh air anymore. How did we come to this? Santanu. -Original Message- From: assam-boun...@assamnet.org

Re: [CentOS-docs] request for Wiki access

2010-08-24 Thread Santanu Das
So, do I have the necessary access to the Wiki now? I got kinda confused. Cheers, Santanu On 21/08/2010 18:39, Phil Schaffner wrote: Ralph Angenendt wrote on 08/20/2010 05:10 PM: Am 19.08.10 16:11, schrieb Phil Schaffner: Santanu Das wrote on 08/19/2010 08:19 AM: that's fine; as you

Re: [CentOS-docs] request for Wiki access

2010-08-19 Thread Santanu Das
I think Working together with other operating systems would be more appropriate for this article. -Santanu Santanu Das wrote: Hi there, Please find the required information below: username: SantanuDas subject: OS X intregration: Enabling AFPD (Netatalk) location

[sage-support] Graphics

2010-07-27 Thread Santanu Sarkar
Let a, b,c be the length of three sides of a triangle. How can I draw the triangle using Sage? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at

[sage-support] Ring

2010-06-18 Thread Santanu Sarkar
How one can define the ring Z_{35} in sage? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL:

[sage-support] sorting array

2010-06-16 Thread Santanu Sarkar
Is there any sorting function for a set of integers in sage? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at

Re: [sage-support] sorting array

2010-06-16 Thread Santanu Sarkar
Thank you. On 16 June 2010 15:13, Tim Joseph Dumol t...@timdumol.com wrote: Do you mean something like this? sage: a = [4,3,2,5,6] sage: a.sort() sage: a [2, 3, 4, 5, 6] On Wed, Jun 16, 2010 at 4:52 PM, Santanu Sarkar sarkar.santanu@gmail.com wrote: Is there any sorting function

[sage-support] Cube root

2010-06-14 Thread Santanu Sarkar
Is there any function by which we can decide a positive integer X, is a perfect cube or not i.e., weather there is an integer Y such that Y^3=X? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to

[android-developers] LED not glowing while connecting USB

2010-05-18 Thread santanu
Hi, I am working on a issue. While USB is connecting to phone LED is not glowing. I have analyzed the issue and got the below logs where I can see that it is not calling led_set_brightness() because the head and head-next ptrs are same. But I don't know why these two values are coming same in this

[sage-support] How to Reverse an Binary Array

2010-05-15 Thread Santanu Sarkar
Suppose A=[0,0,1,1,0,1]. How one can reverse this array using commend only? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at

[android-developers] change booting Monkey image.

2010-05-04 Thread santanu
Hi, I want to change the booting image (i.e monkey image at boot time). But I search the whole framework folder. there is no monkey image (.png ) image . How to do this? pls help Thanks Santanu -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] App for glowing LEDs

2010-05-03 Thread santanu
Hi, I am wirting one app which will glow the LED according to the user instraction. pls help is there any framework APIs to do so.. Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[sage-support] Binary Tree

2010-04-29 Thread Santanu Sarkar
Hi, How one can create a binary tree and cut some of its branches under some conditions continuously in Sage? With regards, Santanu -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com

[sage-support] Polynomial Independence

2010-04-25 Thread Santanu Sarkar
Hi, Suppose f1, f2,,f10 are polynomials over 20 variables over integers. How one can check weather they are linearly independent or not in Sage? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to

Re: [sage-support] Re: Polynomial Independence

2010-04-25 Thread Santanu Sarkar
Hi, No, my polynomials are not homogeneous and are of different degree. Suppose: R.x1,x2,x3=ZZ[] f1=1+x1+x2+x1*x2 f2=1+x1+x3+x1*x3 I want to find linear dependence of the set polynomials {f1,f2,f1*f2, x1*f2,x2*f2} With regards, Santanu On 25 April 2010 15:33, Simon King simon.k

Re: [sage-support] Re: Polynomial Independence

2010-04-25 Thread Santanu Sarkar
Thank you very much for your kind help. On 25 April 2010 17:00, Simon King simon.k...@nuigalway.ie wrote: On 25 Apr., 12:50, Santanu Sarkar sarkar.santanu@gmail.com wrote: Sorry again. Dependency needs over integer. Probably there is a better way of doing it, but the following works

[sage-support] Monomial problem

2010-03-25 Thread Santanu Sarkar
Suppose x is a variable. Then the following does not work. R.x=QQ[] f=(x^2/x) print f.monomials() -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at

Re: [sage-support] Monomial problem

2010-03-25 Thread Santanu Sarkar
Thank you. On 25 March 2010 18:29, Martin Albrecht m...@informatik.uni-bremen.dewrote: sage: R.x=QQ[] sage: f=(x^2/x) sage: type(f) type '...FractionFieldElement' sage: f.monomials() # this fails because f is a fraction field element Traceback (most recent call last) ... sage:

[sage-support] Refer in Paper

2010-03-25 Thread Santanu Sarkar
How can I refer SAGE 4.1.1 in my research paper? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support

[sage-support] Exponentiation

2010-02-23 Thread Santanu Sarkar
How I calculate the integer part of e^100, where e=1+1/2+1/6+ i,e logarithmic e ? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at

[jboss-user] [jBPM] New message: Re: Exception handling in JBPM4 ?

2010-02-15 Thread Santanu Saraswati
User development, A new message was posted in the thread Exception handling in JBPM4 ?: http://community.jboss.org/message/526444#526444 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: JBpm 4.3 + Spring 3 transaction problem at buildProcessEngine

2010-01-30 Thread Santanu Saraswati
User development, A new message was posted in the thread JBpm 4.3 + Spring 3 transaction problem at buildProcessEngine: http://community.jboss.org/message/523106#523106 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: jbpm 4.3 spring DecisionHandler question

2010-01-30 Thread Santanu Saraswati
User development, A new message was posted in the thread jbpm 4.3 spring amp; DecisionHandler question: http://community.jboss.org/message/523136#523136 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: How to get sub process instance id

2010-01-29 Thread Santanu Saraswati
User development, A new message was posted in the thread How to get sub process instance id: http://community.jboss.org/message/523064#523064 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[sage-support] Irreducibility of a polynomial

2010-01-29 Thread Santanu Sarkar
How one can check weather a polynomial f(x,y) is irreducible over rational or not? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at

[jboss-user] [jBPM] New message: Re: jbpm4.3 - NumberFormatException on validateRepositoryCache

2010-01-26 Thread Santanu Saraswati
User development, A new message was posted in the thread jbpm4.3 - NumberFormatException on validateRepositoryCache: http://community.jboss.org/message/522393#522393 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: JBPM 4.3 and JPA/Hibernate integration question

2010-01-24 Thread Santanu Saraswati
User development, A new message was posted in the thread JBPM 4.3 and JPA/Hibernate integration question: http://community.jboss.org/message/521916#521916 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: [jBPM4.3] - Debug messages on the console

2010-01-23 Thread Santanu Saraswati
User development, A new message was posted in the thread [jBPM4.3] - Debug messages on the console: http://community.jboss.org/message/521866#521866 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: Obtaining all available transitions for a wait state node?

2010-01-23 Thread Santanu Saraswati
User development, A new message was posted in the thread Obtaining all available transitions for a lt;wait stategt; node?: http://community.jboss.org/message/521868#521868 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: jBPM 4.3 - Will cause memory leaks due to unclosed InitialContext()

2010-01-22 Thread Santanu Saraswati
User development, A new message was posted in the thread jBPM 4.3 - Will cause memory leaks due to unclosed InitialContext(): http://community.jboss.org/message/521841#521841 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: Spring Modules and jBPM 3.2.X

2010-01-21 Thread Santanu Saraswati
User development, A new message was posted in the thread Spring Modules and jBPM 3.2.X: http://community.jboss.org/message/521603#521603 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: Problem Signaling a Waiting Execution

2010-01-20 Thread Santanu Saraswati
User development, A new message was posted in the thread Problem Signaling a Waiting Execution: http://community.jboss.org/message/521001#521001 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: Strange Fork Behavior

2010-01-20 Thread Santanu Saraswati
User development, A new message was posted in the thread Strange Fork Behavior: http://community.jboss.org/message/521212#521212 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: Problem Signaling a Waiting Execution

2010-01-18 Thread Santanu Saraswati
User development, A new message was posted in the thread Problem Signaling a Waiting Execution: http://community.jboss.org/message/520721#520721 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: Problem Signaling a Waiting Execution

2010-01-16 Thread Santanu Saraswati
User development, A new message was posted in the thread Problem Signaling a Waiting Execution: http://community.jboss.org/message/520431#520431 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: TaskService issue

2010-01-15 Thread Santanu Saraswati
User development, A new message was posted in the thread TaskService issue: http://community.jboss.org/message/520272#520272 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message: -- I

[jboss-user] [jBPM] New message: Re: Cleanup Process Engine

2010-01-14 Thread Santanu Saraswati
User development, A new message was posted in the thread Cleanup Process Engine: http://community.jboss.org/message/519958#519958 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: jbpm 4 task problem

2010-01-14 Thread Santanu Saraswati
User development, A new message was posted in the thread jbpm 4 task problem: http://community.jboss.org/message/520160#520160 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: TaskService issue

2010-01-14 Thread Santanu Saraswati
User development, A new message was posted in the thread TaskService issue: http://community.jboss.org/message/520165#520165 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message: -- Its

[jboss-user] [jBPM] New message: Re: NullPointerException on Assignment-Handler

2010-01-14 Thread Santanu Saraswati
User development, A new message was posted in the thread NullPointerException on Assignment-Handler: http://community.jboss.org/message/520219#520219 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: How to get sub process instance id

2010-01-13 Thread Santanu Saraswati
User development, A new message was posted in the thread How to get sub process instance id: http://community.jboss.org/message/519951#519951 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: Getting available transitions for a task

2010-01-13 Thread Santanu Saraswati
User development, A new message was posted in the thread Getting available transitions for a task: http://community.jboss.org/message/519952#519952 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: How to search Tasks by Name

2010-01-12 Thread Santanu Saraswati
User development, A new message was posted in the thread How to search Tasks by Name: http://community.jboss.org/message/519666#519666 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message

[jboss-user] [jBPM] New message: Re: Terminate the task

2010-01-12 Thread Santanu Saraswati
User development, A new message was posted in the thread Terminate the task: http://community.jboss.org/message/519725#519725 Author : Santanu Saraswati Profile : http://community.jboss.org/people/saraswati.santanu Message: -- If you

[gmx-users] Nonbonded 1-4 interactions

2010-01-11 Thread Santanu Chatterjee
calculates the scaled 1-4 LJ interaction for all 1-4 pairs in the molecule? Or does it do it only for the entries under the [pairs] section in topology file? And what about Coulomb interactions? Any insight will be greatly appreciated. Thanks in advance, Santanu -- gmx-users mailing listgmx

Re: [sage-support] Polynomial Prolem

2009-12-19 Thread Santanu Sarkar
Thanks. 2009/12/9 Martin Albrecht m...@informatik.uni-bremen.de On Wednesday 09 December 2009, Santanu Sarkar wrote: Dear all, Suppose I have polynomials over rational(Q) field although coefficients are integer. I want to transform these polynomials over some finite field say GF(7

[sage-support] Closest Vector Problem

2009-12-19 Thread Santanu Sarkar
Dear all, How can I find an approximately closest vector problem of Lattice in Sage (app. shortest v p can be solved by LLL)? With regards, Santanu -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr

[sage-support] Polynomial Prolem

2009-12-09 Thread Santanu Sarkar
,w=GF(7)[] f=f3(z,w) g=f4(z,w) With regards, Santanu -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support

[Bug 419663] Re: devkit-disks-daemon assert failure: devkit-disks-daemon: atasmart.c:2701: sk_disk_set_blob: Assertion `blob' failed.

2009-12-07 Thread Santanu
** Changed in: devicekit-disks (Ubuntu) Status: Fix Released = New ** Changed in: devicekit-disks (Ubuntu) Status: New = Fix Released -- devkit-disks-daemon assert failure: devkit-disks-daemon: atasmart.c:2701: sk_disk_set_blob: Assertion `blob' failed.

Re: [Numpy-discussion] a simple examplr showing numpy and matplotlib failing

2009-12-01 Thread Santanu Chatterjee
Hi Mathew, I saw your email and I was curious about it. I tried your code and it does work for me without any problem. Santanu On Tue, Dec 1, 2009 at 2:58 PM, Michael Droettboom md...@stsci.edu wrote: Hmm... works for me. What platform, with how much physical and virtual RAM? One thing

How to fix gnome-panel item size

2009-10-19 Thread Santanu Chatterjee
. Regards, Santanu Chatterjee attachment: Screenshot.png___ gnome-list mailing list gnome-list@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-list

[gnome-love] How to fix gnome-panel item size

2009-10-19 Thread Santanu Chatterjee
. Regards, Santanu Chatterjee attachment: Screenshot.png___ gnome-love mailing list gnome-love@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-love

How to fix gnome-panel item size

2009-10-19 Thread Santanu Chatterjee
. Regards, Santanu Chatterjee attachment: Screenshot.png

[sage-support] Request

2009-10-13 Thread Santanu Sarkar
Suppose we want to plot(y vs x) with data set as follows: (.1,1), (.2,3), (.4,5), (.5,6). Also we want find plot with two data set as follows: (x1,y1), ,(xn,yn) and (x1,y'1),..,(x'n,y'n). We want to output as .eps file. Please help me.

[sage-support] Request for Ploting

2009-10-13 Thread Santanu Sarkar
From some data set I plot the attached eps file using Matlab. How Can I do same thing using Sage only? --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to

[sage-support] Greek alphabet

2009-10-13 Thread Santanu Sarkar
How can I write alpha, beta etc. in Sage? --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support-unsubscr...@googlegroups.com For more options, visit this group at

[indiantreepix:15655] Clematis spp.

2009-08-10 Thread santanu
Dear Joshi ji, Your species may be Clematis of Ranunculaceae family. With regards. santanu --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[sage-support] Jocobi Symbol

2009-07-19 Thread Santanu Sarkar
How Jacobi Symbol (a/N) can be calculate in Sage 4.1 --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support-unsubscr...@googlegroups.com For more options, visit this group

[sage-support] Re: Jocobi Symbol

2009-07-19 Thread Santanu Sarkar
Thank you. 2009/7/19 Alex Ghitza aghi...@gmail.com Try sage: kronecker_symbol(a, N) with a and N your favourite integers. Best, Alex On Sun, Jul 19, 2009 at 4:28 PM, Santanu Sarkarsarkar.santanu@gmail.com wrote: How Jacobi Symbol (a/N) can be calculate in Sage 4.1

[sage-support] Bits problem

2009-07-18 Thread Santanu Sarkar
How can find the number of bits of an integer in Sage 4.1 ? Say, N=1234. In Sage 3.1.1 it was N.bits() . --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to

[sage-support] Square root problem

2009-07-16 Thread Santanu Sarkar
Suppose we want to find just integer part of square root 1000. Say B=sqrt(1000). Then how can I use digits function i,e. B.digits() to find the bits of B. --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from

[sage-support] Polynomial

2009-07-15 Thread Santanu Sarkar
Suppose f=2*x^2+3*x+1 is a polynomial in x. How efficiently we can calculate f^10 modulo 24? --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to

[sage-support] Sum of four square

2009-07-10 Thread Santanu Sarkar
Is the algorithm for sum of four square i,e every positive integer can be expressed as the sum of four square is implemented in Sage --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send

[gmx-users] GROMACS file formats

2009-06-22 Thread Santanu Ch
included in GROMACS for analysis). Google sends me to this blank page : http://www.gromacs.org/documentation/reference/online/trr.html. I will appreciate if anyone can point me to the current website for this. Thanks in advance, Santanu ___ gmx

<    1   2   3   4   5   6   7   8   9   10   >