Info

この質問は閉じられています。 編集または回答するには再度開いてください。

what is the meaning of code?

1 回表示 (過去 30 日間)
Md.Simul Hasan Talukder
Md.Simul Hasan Talukder 2019 年 1 月 29 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
i=1;j=1;
secret_img(i, j) = floor(secret_img(i, j)/2);
  2 件のコメント
madhan ravi
madhan ravi 2019 年 1 月 29 日
You don’t respond to any answers but yet you keep asking what is this , what is that?
Md.Simul Hasan Talukder
Md.Simul Hasan Talukder 2019 年 1 月 29 日
編集済み: Md.Simul Hasan Talukder 2019 年 1 月 29 日
Sorry dear. it was my fault. Next i will response .
Acutally I am new user mathworks. I think you are able to Understand.plz don't angry with me.
I expect from you,you will help me providing sufficient information and answer.

回答 (1 件)

Jan
Jan 2019 年 1 月 29 日
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 件のコメント
Md.Simul Hasan Talukder
Md.Simul Hasan Talukder 2019 年 1 月 29 日
Thank you dear

この質問は閉じられています。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by