[sage-support] Crystals won't view in jupiter notebook

2022-06-01 Thread Avi
I have installed Sagemath 9.3 on my windows 10 computer and have run the following code: view(crystals.Tableaux("A3",shape=[2,1])) I end up getting this long error: An error occurred. This is pdfTeX, Version 3.141592653-2.6-1.40.24 (MiKTeX 22.3) (preloaded format=pdflatex 2022.6.1) 1 JUN 2022

Re: [sage-support] How to compute the inverse tangent of an angle in degrees?

2015-09-27 Thread avi kaur
On Sunday, September 27, 2015 at 10:22:14 PM UTC+5:30, David Joyner wrote: > > > > sage: atan_deg = lambda x: RR(atan(x)*180/pi) > sage: atan_deg(1) > 45.0 > Thank you :) -- Avi -- You received this message because you are subscribed to the Google Groups

[sage-support] How to compute the inverse tangent of an angle in degrees?

2015-09-27 Thread avi kaur
ime = atanh(0.67) sage: phiPrime 0.810743125475137 I want to ask that is there any function in sage similar to octave. The function I used is not that which gives me right answer. I did not find any similar function. -- Avi kaur Blog: https://avikashyap620.wordpress.com "There is no la

[sage-support] CGI through sagemath

2015-09-24 Thread avi kaur
How to use sage through CGI? I am calling sage inside CGI script but it is not executing. What I want to do is to get data through CGI and run sage. -- Avi kaur Blog: https://avikashyap620.wordpress.com "There is no lacking of opportunity, The thing is you do not want to see It"

[sage-support] show graph with sage script

2015-07-21 Thread avi kaur
Hello I want to plot equation with sage script.When I run this within script, It shows: Graphics object consisting of 1 graphics primitive but it doesn't show the graph. How to show it? -- Avi kaur Blog: https://avikashyap620.wordpress.com BlogPost: http://avikaur.blogsp

[sage-support] integrating a matrix

2015-07-15 Thread avi kaur
hello everybody I want to know, How we can obtain integration of matrix. suppose i have this matrix: x,y,z=var('x','y','z') f=matrix([[x^3,2*x^2,3*x],[2* x^2,x^4,x],[3*x,x,x^5]]) I am unable to obtain the integration of matrix of this above problem. -- You received this message because you

[sage-support] bug: adding a number to matrix

2015-07-12 Thread avi kaur
example. When we multiply or divide it with some value, It processes all the elements of matrix but not in the case of adding operation. -- Avi kaur Blog: https://avikashyap620.wordpress.com "There is no lacking of opportunity, The thing is you do not want to see It" -- Yo

[sage-support] Import skimage(scikit-image) in sage

2015-07-08 Thread avi kaur
I found a library skimage. How should I import it in sage? http://scikit-image.org/ -- Avi kaur Blog: https://avikashyap620.wordpress.com "There is no lacking of opportunity, The thing is you do not want to see It" -- You received this message because you are subscri

[sage-support] Create modules

2015-07-01 Thread avi kaur
Hello, I want to ask a question as we create modules in python, in the same way Is it possible to create modules in sage? -- Avi kaur Blog: https://avikashyap620.wordpress.com "There is no lacking of opportunity, The thing is you do not want to see It" -- You rec

Re: [sage-support] Re: image processing

2015-06-29 Thread avi kaur
ut a first guess is that cv2 can't handle Sage > Integers. So using int(256) and int(0) might help. > > More generally, if you are not going to be using a lot of Sage-specific > functionality but mostly Python packages, you may want to try using > > sage -ipython I tried it w

[sage-support] image processing

2015-06-29 Thread avi kaur
Hello everybody I am trying to make histogram of image. I wrote the following code for that: import cv2 img=cv2.imread('avi.jpg') gray= cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) his=cv2.clacHist([img],[0],None,[256],[0,256]) then I am receiving the following error: --

[sage-support] Image processing

2015-06-16 Thread avi kaur
matplotlib.pyplot sage: img = matplotlib.image.imread('/home/avi/Desktop/cat.jpg') --- IOError Traceback (most recent call last) in () > 1 img = matplotlib.image.imread('/home/a

Re: [sage-support] Re: Induction method

2015-06-13 Thread avi kaur
On Sat, Jun 13, 2015 at 2:53 PM, David Joyner wrote: > On Fri, Jun 12, 2015 at 5:06 PM, avi kaur wrote: >> On Sat, Jun 13, 2015 at 2:08 AM, Dominique Laurain >> wrote: > In that case, I would suggest you look at the solution to recursive equations, > such as the Fibonacci

Re: [sage-support] Re: Induction method

2015-06-12 Thread avi kaur
On Sat, Jun 13, 2015 at 2:36 AM, avi kaur wrote: > On Sat, Jun 13, 2015 at 2:08 AM, Dominique Laurain > wrote: >> Precisely I cannot explain it...because using software is not same coding >> software ..people , not me, are coding SAGE (and other modules included into > . &

Re: [sage-support] Re: Induction method

2015-06-12 Thread avi kaur
Induction Method) one of the mentioned topic. Then they said to try out PMI in sage. This is the only reason, nothing else. Thats why I am using and try different problems daily. -- Avi kaur Blog: https://avikashyap620.wordpress.com "There is no lacking of opportunity, The thi

[sage-support] Re: Induction method

2015-06-12 Thread avi kaur
gt; Thanks Sir for encouraging me, I am trying to learn sage deeply. I would not be despaired because there are many teachers around me to teach me like you, Sir. Can you explain the above solution. Thank you -- Avi kaur Blog: https://avikashyap620.wordpress.com &qu

[sage-support] Re: Induction method

2015-06-12 Thread avi kaur
x27;l') f(n)=n g(k)=k h(l)=l l=k+1 sol=solve(f==g,x,k, solution_dict=True) for s in sol: show(s) soll=solve(g==h,k,l, solution_dict=True) for s in soll: show(s) but results are strange. -- Avi kaur Blog: https://avikashyap620.wordpress.com "There is no lack

[sage-support] Re: writing solution in sage to OpenCV cvSolve

2015-06-12 Thread avi kaur
t;> > It means, I need to reinstall my sage or Is there any way to update my sage? -- Avi kaur Blog: https://avikashyap620.wordpress.com "There is no lacking of opportunity, The thing is you do not want to see It" -- You received this messag

[sage-support] Re: writing solution in sage to OpenCV cvSolve

2015-06-11 Thread avi kaur
t;>> import cv2 Traceback (most recent call last): File "", line 1, in ImportError: No module named cv2 I have installed the Opencv-2.4.9. -- Avi kaur Blog: https://avikashyap620.wordpress.com "There is no lacking of opportunity, The thing is you do not wan

[sage-support] image processing in sage

2015-06-10 Thread avi kaur
;t understand how to display images. -- Avi kaur Blog: https://avikashyap620.wordpress.com "There is no lacking of opportunity, The thing is you do not want to see It" -- You received this message because you are subscribed to the Google Groups "sage-support" g

Re: [sage-support] Induction method

2015-06-08 Thread avi kaur
On Tue, Jun 9, 2015 at 1:19 AM, David Joyner wrote: > On Mon, Jun 8, 2015 at 3:37 PM, avi kaur wrote: >> Hello Everyone >> >> >> Is it possible to solve Induction problems in sage. If yes then how? >> > > Can you give an example of what you want? >

[sage-support] Induction method

2015-06-08 Thread avi kaur
Hello Everyone Is it possible to solve Induction problems in sage. If yes then how? -- Avi kaur -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to sa

[sage-support] Sage math with LaTex

2015-06-08 Thread avi kaur
Hello Developers I have to use Sage math along with Latex. I have done the installation of Sage and making latex find package sagetex.sh. I am receiving this error "!LaTex Error: File 'makecmds.sty' not Found." Then what should I do to rectify this problem. -- Avi kaur -

Re: [sage-support] Re: Decompressing sage version

2015-06-07 Thread avi kaur
Success It has started working. Thank you all the developers who helped me in starting Sage and Thank you for your time given to me :) :) avi@avi-HP-G42-Notebook-PC:~$ cd sage-6.7-x86_64-Linux avi@avi-HP-G42-Notebook-PC:~/sage-6.7-x86_64-Linux$ ./sage find: `/home/avi/sage-6.7-x86_64-Linux/local

Re: [sage-support] Re: Decompressing sage version

2015-06-07 Thread avi kaur
I will follow you, Sir Thank you :) -- Avi kaur On Sun, Jun 7, 2015 at 7:25 PM, Dominique Laurain < dominique.laurai...@orange.fr> wrote: > > Maybe you are "fed up" but ...nobody except you can read with your eyes : > > avi@avi-HP-G42-Notebook-PC:~$ lrzip -d Ubunt

Re: [sage-support] Re: Decompressing sage version

2015-06-07 Thread avi kaur
I am fed up with that. I run the lrzuntar -d. It displays the following: avi@avi-HP-G42-Notebook-PC:~$ lrzuntar -d Ubuntu_14.04_LTS_sage-6.7-i686-Linux.tar.lrz Decompressing... Partial read!? asked for 186274378 bytes but got 0 Failed to read_stream in unzip_literal Inappropriate ioctl for

Re: [sage-support] Re: Decompressing sage version

2015-06-06 Thread avi kaur
Not yet. I will try it , too. On Sun, Jun 7, 2015 at 3:59 AM, wrote: > Did you do a chksum on your download? Maybe download another copy. Sounds > like a corrupt file. > > — > Sent from Mailbox <https://www.dropbox.com/mailbox> > > > On Sat, Jun 6, 2015 at 6:21 PM

Re: [sage-support] Re: Decompressing sage version

2015-06-06 Thread avi kaur
Sir It displays that It is not a tar file. Moreover, The version I want to install has ".lrz" extension. On Sun, Jun 7, 2015 at 3:41 AM, Jorge Garcia wrote: > ctrl alt t opens a terminal with GUI desktop unaffected. > > -- > You received this message because you are subscribed to a topic in the

Re: [sage-support] Re: Decompressing sage version

2015-06-06 Thread avi kaur
ctrl alt f1 combo. >> >> — >> Sent from Mailbox <https://www.dropbox.com/mailbox> >> >> >> On Sat, Jun 6, 2015 at 5:31 PM, Vincent Delecroix < >> 20100.delecr...@gmail.com> wrote: >> >>> As I said already: >>> >>> $

Re: [sage-support] Re: Decompressing sage version

2015-06-06 Thread avi kaur
Ok I am going to try this one, too on ctrl+alt+f1 or t. But how i would exit from this mode? All developers are very helpful [?] Thank you Avi kaur On Sun, Jun 7, 2015 at 3:16 AM, Alexander Lindsay wrote: > Also ctrl-alt-t > > Sent from my iPhone > > On Jun 6, 2015, at

Re: [sage-support] Re: Decompressing sage version

2015-06-06 Thread avi kaur
avi@avi-HP-G42-Notebook-PC:~$ tar xf Ubuntu_14.04_LTS_sage-6.7-i686-Linux.tar.lrz tar: This does not look like a tar archive tar: Skipping to next header tar: Exiting with failure status due to previous errors avi@avi-HP-G42-Notebook-PC:~$ I am receiving this message. On Sun, Jun 7, 2015 at 3

Re: [sage-support] Re: Decompressing sage version

2015-06-06 Thread avi kaur
Ok I got you What should I have to type to decompress the file. On Sun, Jun 7, 2015 at 2:59 AM, Vincent Delecroix <20100.delecr...@gmail.com > wrote: > Yes. This is where you have to type commands. > > > On 06/06/15 23:00, avi kaur wrote: > >> Ok terminal from where we

Re: [sage-support] Re: Decompressing sage version

2015-06-06 Thread avi kaur
nd somebody that explain that to you in live. You > can also have a look here > > https://help.ubuntu.com/community/UsingTheTerminal > > Vincent > > > On 06/06/15 22:43, avi kaur wrote: > >> >> Yes Vdelecroix >> I feel It is "ctrl+alt+f1". >&

[sage-support] Re: Decompressing sage version

2015-06-06 Thread avi kaur
Yes Vdelecroix I feel It is "ctrl+alt+f1". -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-support+unsubscr...@googlegroups.com. To post to this group, se

[sage-support] Re: Decompressing sage version

2015-06-06 Thread avi kaur
Did you try Googling ubuntu decompress lrz ? Sorry John I don't know What is this? I am totally new to this environment. -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send

[sage-support] Re: Decompressing sage version

2015-06-06 Thread avi kaur
still I am unable to run the command. What should i write properly? Can you help me Vdelecronix? On Sunday, June 7, 2015 at 1:25:59 AM UTC+5:30, avi kaur wrote: > > hello > > > I am facing problem while installing sagemath. I am unable to decompress > this "Ubuntu_

[sage-support] Decompressing sage version

2015-06-06 Thread avi kaur
hello I am facing problem while installing sagemath. I am unable to decompress this "Ubuntu_14.04_LTS_sage-6.7-i686-Linux.tar.lrz" version of ubuntu. Which command i need to run to decompress the file. Avi kaur -- You received this message because you are subscribed to the Goo

[sage-support] Re: Issues windows 8

2015-06-06 Thread avi kaur
Hello Tino Rozzo I think either you should Restart your system or update your browser. It may work. I face the same problem. - Avi kaur On Saturday, June 6, 2015 at 11:25:25 PM UTC+5:30, Tino Rozzo wrote: > > When I am on facebook, my apps say Invalid Certificate and a grey field &g

[sage-support] Math function

2015-06-06 Thread avi kaur
Hello Everybody Why "integrate(sqrt(x)*sqrt(1+x), x)" function is used? Thank You -Avi Kaur -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an em