photo

Victoria Loh


Con actividad desde 2017

Followers: 0   Following: 0

Estadística

MATLAB Answers

2 Preguntas
0 Respuestas

CLASIFICACIÓN
242.589
of 301.172

REPUTACIÓN
0

CONTRIBUCIONES
2 Preguntas
0 Respuestas

ACEPTACIÓN DE RESPUESTAS
100.0%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 21.183

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 173.200

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

  • Thankful Level 2
  • Thankful Level 1

Ver insignias

Feeds

Ver por

Pregunta


When solving for x in Ax=b, why is A\b faster that A^-1 * b?
if true % code A = [1,2,-1;2,5,-1;1,3,-3]; b = [6;13;4]; tic for i=1:1000 X = A\b; end toc tic for i=1:1000...

casi 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How do I identify each element in a cell array as a string or a number?
I have a cell array A = {2,8,10,'Good',15,3,21,'Morning',12,26,9,'Joe'}. I want to perform a function on each element depending...

casi 9 años hace | 2 respuestas | 0

2

respuestas