viswaja Katragadda
Followers: 0 Following: 0
Statistiques
4 Questions
0 Réponses
RANG
26 197
of 295 569
RÉPUTATION
1
CONTRIBUTIONS
4 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
0.0%
VOTES REÇUS
1
RANG
of 20 247
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 154 105
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
Hello I have this code for Game of life now I am getting an error in calculating the num_neighbors. Please help me fix it. Thank you
mylife = round(rand(size_of_game,size_of_game)); %mylife = [0 0 0 0 0;0 0 0 0 0;0 1 1 1 0;0 0 0 0 0 ;0 0 0 0 0 ]; ...
environ 7 ans il y a | 1 réponse | 0
1
réponseQuestion
Calculating the inner product of two input vectors and a matrix using for loop and inner function. How do I change the code I have? Thank you so much for your answers.
function y = inner(a,b); % This is a MatLab function to compute the inner product of % two vectors a and b. % C...
environ 7 ans il y a | 2 réponses | 1
2
réponsesQuestion
can anyone help me get the code for the Cellular automata model which Implements and visualizes 1000 generations starting from a random initial states of 0 and 1. The size of the square universe should be user provided.
The rules to update the next generation is: 1. A cell will die in the next generation if 4 or more of its neighbours are dead a...
environ 7 ans il y a | 1 réponse | 0
1
réponseQuestion
Write a Matlab function that uses the Monte Carlo approach to approximating "pi" using the relative areas of a square and an inscribed circle. I have code but I am not sure how to change it to monte carlo
r = 1; % the circle radius nodp = 1:5; % Number of Decimal Places (NODP) for Pi i=1; ...
environ 7 ans il y a | 1 réponse | 0