python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to Get Prediction when when NetTrain Option All is set?
I created a simple Perceptron,and I trained it
trained =
NetTrain[net, {{1, 1} -> 0, {1, 0} -> 1, {0, 0} -> 0, {0, 1} -> 1},
All]
The problem is when the option All is set I 've...
user34018
Votes: 0
Answers: 0
How can I solve an equation with two changing variables in Mathematica?
I want to solve an equation for one value x and many values y. However, x should also change after a certain number of runs of y. I was thinking of a nested for-loop, as I am still relatively new to M...
Stealth Frosch
Votes: 0
Answers: 0
Date and Time Objects in Mathematica
I want to use the DateObject in Mathematica to calculate the difference in times between two cities.
How do I convert the DateObject and TimeObject output to numerical values so I can manipulate them ...
Richard
Votes: 0
Answers: 3
Matrix power without Numpy for 3x3 Matrix
I am trying to calculate Matrix raised to power 'n' without using Numpy for a 3x3 matrix (without using any library functions)
Here is the code that I have written so far:
def matmul(M1, M2):
...
Dext1232
Votes: 0
Answers: 2