photo

Sheng Chen

MathWorks

Last seen: 7 días hace Con actividad desde 2019

Followers: 0   Following: 0

Estadística

MATLAB Answers

0 Preguntas
9 Respuestas

CLASIFICACIÓN
6.144
of 297.457

REPUTACIÓN
8

CONTRIBUCIONES
0 Preguntas
9 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 20.438

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 158.938

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

  • Knowledgeable Level 1
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
Removing zeros from start of an array and inserting them at the end of same array
Try this A = [ 0,1,0,3,12]; idx = 1; for j = 1 : numel(A) if A(j) ~= 0 % swap A(j) and A(idx) A([j idx...

casi 6 años hace | 0

Respondida
No appropriate method, property, or field 'MergedKeys' for class 'PollClass'.
That error message means in class 'PollClass', there is no property called 'MergedKeys' You can use isprop to check if there is...

casi 6 años hace | 0

| aceptada

Respondida
Matlab dictionary to map tuples of values to specific output
Hi, the second row of phoneNumber matrix you gave has only 9 columns and I cannot find any pattern in your phoneNumber matrix. ...

alrededor de 6 años hace | 0

Respondida
Is it possible to run a set of scripts through a for loop or is there a different method I could use?
script1.m function y = script1(x) y = x + 1; end script2.m function y = script2(x) y = x + 2; end script3.m fun...

alrededor de 6 años hace | 0

| aceptada

Respondida
how to reognise faces with labels
Hi, in terms of increasing the size of your data, one common way is "Data augmentation." You can try to do the following to you...

alrededor de 6 años hace | 0

Respondida
Normalization of an array of double
Try this v = [1.3, 5.6, 2.2, 1.0, 3.32]; N = normalize(v,'range'); 'range' means scale range of data to [0,1]. Also, please ...

alrededor de 6 años hace | 0

Respondida
presenting result in a table
You can try table(): LastName = {'Sanchez';'Johnson';'Li';'Diaz';'Brown'}; Age = [38;43;38;40;49]; Smoker = logical([1;0;1;0;...

alrededor de 6 años hace | 0

Respondida
how to give end condition to for loop
You already terminate your code by "return" if h equals 138010. I assume you are asking how to terminate the inner for loop: f...

alrededor de 6 años hace | 0

Respondida
output file .txt
Try this: [sourcepic,phatsource]=uigetfile('*.png','C:\Users\hp\Desktop\images brutes LST\images brutes png\T4'); A=imread('C:...

alrededor de 6 años hace | 0