フィルターのクリア

Info

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

Converting to for loop

1 回表示 (過去 30 日間)
Matt Holm
Matt Holm 2016 年 9 月 8 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hey. just need assistance changing:
cipher_text = arrayfun(@(m,n) Array(m,n), k, origionalText) - 1;
cipher_text(cipher_text == 26) = double(' ') - double('a');
cipher_text = upper(char(cipher_text + double('a')));
and
cipher_text = arrayfun(@(m,n) find(Array(m,:) == n), k, origionalText) - 1;
cipher_text(cipher_text == 26) = double(' ') - double('a');
cipher_text = upper(char(cipher_text + double('a')));
to a for loop

回答 (0 件)

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by