필터 지우기
필터 지우기

Division creating many columns

조회 수: 6 (최근 30일)
William Garrett
William Garrett 2020년 4월 8일
답변: Steven Lord 2020년 4월 8일
I am trying to calculate the % decrease of air pollution in two seperate scenarios and put the answer in a new column variable
However, when I do this it creates the same number of columns as in my table already, all populated with 0, and 1 column the correct answer.
When i split up this code and do it seperately it occurs during the division step
I am using the following code:
Table.PnC_Removal = (((Table.Concentration_S1 - Table.Concentration_S2)/ Table.Concentration_S1)* 100)

채택된 답변

Steven Lord
Steven Lord 2020년 4월 8일
Use element-wise division not matrix division.
Table.PnC_Removal = (((Table.Concentration_S1 - Table.Concentration_S2)./ Table.Concentration_S1)* 100)
Note the extra period that's part of the division sign.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by