Removing a row from a matrix when one value is zero without hardcoding

3 ビュー (過去 30 日間)
James Keiser
James Keiser 2021 年 6 月 15 日
コメント済み: James Keiser 2021 年 6 月 15 日
You have been provided stock data for Boeing in 2018 (from January 1st to December 31st). The data includes the opening (column 4) and closing values (column 7) for the day, along with the highest (column 5) and lowest value (column 6) for the day. I need to be able to remove the rows where opening = 0 without hardcoding.
Code:
Opening = BoeingStock(:,4);
if Opening == 0
BoeingStock(:) = []
else
BoeingStock(:,:0 = [:,:]
end

回答 (1 件)

Mouhamed Niasse
Mouhamed Niasse 2021 年 6 月 15 日
Hello,
Here is what i achieved.
Hope it does help you.
BoeingStock(BoeingStock(:,4)==0,:)=[]

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by