Joseph Wilson
Followers: 0 Following: 0
Estadística
CLASIFICACIÓN
3.265
of 293.767
REPUTACIÓN
16
CONTRIBUCIONES
0 Preguntas
7 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
17.281 of 20.063
REPUTACIÓN
3
EVALUACIÓN MEDIA
3.00
CONTRIBUCIONES
1 Archivo
DESCARGAS
1
ALL TIME DESCARGAS
32
CLASIFICACIÓN
121.032
of 149.751
CONTRIBUCIONES
0 Problemas
1 Solución
PUNTUACIÓN
20
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
How to iterate an equation to solve for missing variable
So there are a couple problems here: 1) the for loop can't start at zero so change to for i = 1:length(theta) solves that 2) ...
más de 3 años hace | 0
| aceptada
How to randomly change a digit in a string
string1 = '00101'; digit_change = randi(length(string1)); digit_val = str2num(string1(digit_change)); digit_new = num2str(~di...
más de 3 años hace | 0
| aceptada
Invalid use of operator in for loop
theta0 = tand(v0y/v0x) while theta0 > 90 || theta0 < 0 % where the '>' gives an error message end Changin...
más de 3 años hace | 0
| aceptada
MATLAB interrupting the algorithm by timer
clear;clc timerval = tic; while 1 endval = toc(timerval); if endval>=3 break end end %tic/toc are b...
más de 3 años hace | 0
why wont text scan read all rows?
fileID = fopen('car_data.txt'); fmt=[repmat('%q',1,8) '%s %*[^\n]']; %have to have %*[^\n] to ignore the rest of that row which...
casi 4 años hace | 0
Repeat input prompts until conditions are met or until prompts asked 3 times
%%%No matter what, your issue of " it simply takes the values given even if they are wrong." is going to occur since MATLAB is %...
casi 4 años hace | 0
| aceptada
Help with my matlab function.
type_of_metal_BD = questdlg('prompt question i.e. Type of metal for BD?','Title of prompt','bronze', 'aluminum', 'steel','steel'...
casi 4 años hace | 0