Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
what is the meaning of code?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Md.Simul Hasan Talukder
el 29 de En. de 2019
Cerrada: MATLAB Answer Bot
el 20 de Ag. de 2021
i=1;j=1;
secret_img(i, j) = floor(secret_img(i, j)/2);
2 comentarios
madhan ravi
el 29 de En. de 2019
You don’t respond to any answers but yet you keep asking what is this , what is that?
Respuestas (1)
Jan
el 29 de En. de 2019
To learn the basics, read the "Getting Started" chapters of the documentation an read Matlab's Onramp: https://matlabacademy.mathworks.com/ . The fundamental details of Matlab cannot be explained in the forum efficiently.
i=1; % The value 1.0 is assigned to the variable "i"
j=1; % Same for "j"
secret_img(i, j) = floor(secret_img(i, j)/2);
% The value of te element (i,j) of the matrix "secret_img" is divided by 2
% and rounded towards zero.
See:
help floor
1 comentario
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!