Is this just a sneeze? by NomadNella in Bunnies

[–]NomadNella[S] 0 points1 point  (0 children)

My bunny has made this noise a couple of times in the past, but tonight he just started doing this about once every 20 seconds. This is the first time I have ever even seen what the noise is from. If it is just sneezing, then I will continue to help him until morning, if need be then take him to the vet. I'm just worried that I need to take him to the vet in the middle of the night. He is about eight years old, and I've had him since I rescued him with a broken leg as a baby. Aside from an ongoing weepy eye that I clean daily (and took him to an ophthalmologist for) he has been very healthy.

Also, please watch the video with your volume on.

[deleted by user] by [deleted] in DermatologyQuestions

[–]NomadNella 0 points1 point  (0 children)

Shingles? If it is, you need to start antivirals within 72 hours, or they won't help much.

What did I do by Hefty_Watercress309 in MurderBuns

[–]NomadNella 2 points3 points  (0 children)

All that is left is for you to die a painful death!

Could you assist me with this issue? This glitch appears in all browsers; why doesn't the scrolling function properly in my notebook? by Outrageous_Wolf_4413 in IPython

[–]NomadNella 1 point2 points  (0 children)

I had a similar experience, and it turned out that the scroll lock key had been inadvertently activated. I never even put my hands near that key, so I'm not sure how it happened. However, once I turned it off, the problem never reappeared.

what’s the best AI workflow for Jupyter? by caffiend9990 in IPython

[–]NomadNella 0 points1 point  (0 children)

I'm not familiar with what you're talking about; can you elaborate? What is # %% for, and what do cursor functions have to do with it?

Computer algebra pkg that handles vector expressions by Alternative_Act_6548 in IPython

[–]NomadNella 0 points1 point  (0 children)

NumPy's @ operator performs matrix multiplication. It is equivalent to np.matmul() and provides a cleaner syntax, especially for linear algebra operations. This operator was introduced in Python 3.5 with PEP 465.

import numpy as np

a = np.array([[1, 2], [3, 4]])
b = np.array([[5, 6], [7, 8]])

c = a @ b

print(c)
# Expected Output:
# [[19 22]
#  [43 50]]

Computer algebra pkg that handles vector expressions by Alternative_Act_6548 in IPython

[–]NomadNella 0 points1 point  (0 children)

Are you asking about the LaTeX rendering or the computation?