How can I perform simple addition/subtraction operations on only certain elements of a row/column based on the first row/column values?
조회 수: 1 (최근 30일)
이전 댓글 표시
Basically, I have created a table with a range of voltage values across the top row and first column and a fixed 12 volts in every other element. Based on those varying values, I would like to modify the fixed elements to create the proper voltage in each element. All while ignoring the 0 value in (1,1).
I have this code so far, basically creating the table:
TopRowVolt = [linspace(0,5,9); linspace(12,12,9);linspace(12,12,9); ...
linspace(12,12,9);linspace(12,12,9);linspace(12,12,9);...
linspace(12,12,9);linspace(12,12,9);linspace(12,12,9);...
linspace(12,12,9)];
FirstColVolt = [0,linspace(0,3,9)]';
ValueTable = [FirstColVolt , TopRowVolt]
For instance, I want to subtract 0.5V across the table for any value in the first column less than 1V, add 0.2V for values in the first column that fall in the range 1V to 2V, and add 0.5V for values above 2V.
Likewise, based on the top row, I'd like to subtract 0.5V based on values less than 2V and add 0.5V on values greater than 3V. I don't understand how to get the code to determine which values require which action and then perform the specific action only on the proper rows/columns, as the first column and row need to be left alone.
댓글 수: 0
답변 (1개)
Image Analyst
2018년 9월 21일
Just use create a mask and use it as an index:
mask = FirstColVolt < 1;
FirstColVolt(mask) = FirstColVolt(mask) - 0.5;
mask = FirstColVolt >= 1 & FirstColVolt < 2;
FirstColVolt(mask) = FirstColVolt(mask) + 0.2;
mask = FirstColVolt >= 2;
FirstColVolt(mask) = FirstColVolt(mask) + 0.5;
mask2 = TopRowVolt < 2;
TopRowVolt(mask2) = TopRowVolt(mask2) - 0.5;
mask2 = TopRowVolt > 3;
TopRowVolt(mask2) = TopRowVolt(mask2) + 0.5;
댓글 수: 10
참고 항목
카테고리
Help Center 및 File Exchange에서 Call MATLAB from C에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!