フィルターのクリア

Matlab While Loop problem

2 ビュー (過去 30 日間)
Ashes
Ashes 2013 年 11 月 1 日
回答済み: Mehmet Mert Aktas 2016 年 5 月 11 日
I want to do a while loop so given array A=[2, 4, 6;9, 10, 11; -1, -3 , 12). I want generate B whose elements are the natural logarithm of the values in A if the values are greater than 1. remaining elements of B can be obtained by adding 21 to each of the corresponding elements of A

採用された回答

Image Analyst
Image Analyst 2013 年 11 月 1 日
A vectorized solution:
A=[2, 4, 6;9, 10, 11; -1, -3 , 12] % Define input data.
B = A + 21 % Initialize B
moreThan1 = A > 1 % Find elements greater than 1.
B(moreThan1) = log(A(moreThan1)) % Assign them to log(A).

その他の回答 (2 件)

Iain
Iain 2013 年 11 月 1 日
count = 0
while count < numel(a)
count = count + 1;
if a(count)>1
b(count) = log(a(count));
else
b(count) = log(a(count)+21);
end
end
There are other, better, faster methods.

Mehmet Mert Aktas
Mehmet Mert Aktas 2016 年 5 月 11 日
clear clc a = [2, 4, 6; 9, 10, 11; -1, -3, -12]; b = zeros(size(a)); for i = 1: 3 for j = 1: 3 if (a(i,j) > 1) b(i,j) = log(a(i,j)); else b(i,j) = a(i,j) + 21; end end end

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by