![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/17100293_1576422437693.jpg)
The Legend
Followers: 0 Following: 0
Estadística
16 Preguntas
2 Respuestas
CLASIFICACIÓN
31.192
of 297.016
REPUTACIÓN
1
CONTRIBUCIONES
16 Preguntas
2 Respuestas
ACEPTACIÓN DE RESPUESTAS
50.0%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 157.725
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
Implement friction into a model, related to the velocity. (Missile Launch)
Does anyone know how I could implement friction into my code located down below? The friction should be defined as: Ff_vector =...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
How do I implement friction into my script?
clear; close all; clc; tic aT = 0; ad = 0; for i = [37:2:53] r = 6371 * 10^3; G = 6.674 * 10^-11; M =...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Alternating up and down in my script to find path through 'maze'
Scrip folder is attached! (.zip) The point of this script is to find if a path exists of 1's between the bottom row and top row...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
My script isn't working, can someone please! help me? Further explanation in thread.
function M = initializeBoard(N, p) for i = 1 : N for j = 1 : N x = rand(1); if (x < p) M(i,...
alrededor de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
How to derive the following equation? I need this for a script that I am working on.
Equation 1 Can someone help me derive equation (2) from equation (1)? I have struggled with this for 1 hour and have no clue...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Can anyone tell me why the 2 scripts that i attached are giving different outputs for the same inputs?
Can anyone tell me why the 2 scripts that i attached are giving different outputs for the same inputs? They should be doing exa...
alrededor de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
Alternating up and down in my script to find path through 'maze'
Scrip folder is attached! (.zip) The point of this script is to find if a path exists of 1's between the bottom row and top row...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Why isn't the code properly distributing the 1's and 2's in the ratio 3:4 or 4:3?
Why isn't the code distributing the 1's and 2's in the ratio 3:4 or 4:3? Why is it outputting zeros where it shouldn't (look at...
alrededor de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
Is there it possible to create a function that checks for the best next move in this Connect N game?
Input: M = [0,0,0,0,0,0,0;0,0,0,1,0,0,0;0,2,1,2,0,0,0;0,1,1,1,0,0,0;2,2,1,1,2,0,0;1,2,1,2,1,1,2] Visualized: 0 0 0 0 0 0 0 0...
alrededor de 5 años hace | 1 respuesta | 1
1
respuestaPregunta
How do I write a function that checks whether there is a horizontal, vertical or diagonal connect N?
Input: M = [0,0,0,2,0,0,0;0,0,0,2,0,1,0;0,2,0,1,1,2,0;0,1,2,1,1,1,0;1,2,1,2,2,2,0;2,2,1,2,2,1,2] Visualization of input: ----...
alrededor de 5 años hace | 0 respuestas | 0
0
respuestasWhy does it only detect diagonal connect 4s (Ns) in this direction ↖, but not in this direction ↗ ?
bump
alrededor de 5 años hace | 0
Pregunta
Why does it only detect diagonal connect 4s (Ns) in this direction ↖, but not in this direction ↗ ?
Why does it only detect diagonal connect 4s (Ns) in this direction ↖, but not in this direction ↗ ? My function function victo...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Why is is the following function only detecting diagonal functions that that start top left and end bottom right?
Why is is the following function only detecting diagonal functions that that start top left and end bottom right ( \ ) and doesn...
alrededor de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
How do I make it calculate the variable maxK inbetween both input arguments?
How do I make it calculate the variable maxK in between both input arguments: clear; close all; clc; N = input('Gamemode [...
alrededor de 5 años hace | 2 respuestas | 0
2
respuestasPregunta
Printing matrix to display error message, why?
Can someone tell me why this error occurs please? Input M = 0 0 0 0 0 0 0 2 1 1 0 ...
alrededor de 5 años hace | 2 respuestas | 0
2
respuestasPregunta
Connect 4 Initializing the board
Worked on / edited the code (this is what I came up with so far, don't know how to put it into code though): clear; close all;...
alrededor de 5 años hace | 2 respuestas | 0
2
respuestasPregunta
Check if connect 4 occurs in matrix
Could someone help me with a code to check if there is a Connect 4 in the following matrix: 0 0 0 0 0 0 0 0 = empty 0 0...
alrededor de 5 años hace | 2 respuestas | 0