Estadística
0 Preguntas
10 Respuestas
CLASIFICACIÓN
22.246
of 297.527
REPUTACIÓN
2
CONTRIBUCIONES
0 Preguntas
10 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 20.454
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 159.075
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
if-block_in_switch_case
Yes you can, inside any case you can write if else statements.
más de 4 años hace | 1
Reading multiple bytes on a specific address of an sensor on an arduino at once
m is the arduino object dev = device (m,'I2CAddress',startingRegisterAddress) data = readRegister(dev, startingRegisterAddress...
más de 4 años hace | 0
How to check success of inputParser.parse method
As far as my knowledge is concerned there is no inbuilt parser check, you can check by putting breakpoints in your code and chec...
más de 4 años hace | 0
creating an string array
Your question is not clear, can you please explain it more clearly.
más de 4 años hace | 0
String comparison in table
The reason is you are not comparing a single value but multiple values in this case two values of the table. Like in your case ...
más de 4 años hace | 0
Improving an if else function
I don't think this if else condition could further be reduced, try to check in your other part of code.
más de 4 años hace | 0
How to Use for Loop Variable outside loop
You can try defining/declaring the variable outside the loop. Then it would work I feel.
más de 4 años hace | 0
Calculate the roots of quadratic ax^2 + bx + c = 0. For the program, consider the discriminant D, D = b^2 − 4ac
You can refer to this link and use the function to solve higher degree polynomials as well https://www.mathworks.com/help/symbo...
más de 4 años hace | 0
Approximating square root function using loops
function estSqrt= ApproxSqrt(a,tol) if a<0 msg='Can't calculate square root of negative number'; error(msg); else if a==...
más de 4 años hace | 0
How could I use MATLAB to solve for x with this equation, 0=a*x^(3)+b*x^(-1)+c.
Refer the docmentation https://www.mathworks.com/help/symbolic/solve.html
más de 4 años hace | 0