Clear Filters
Clear Filters

How to replace all the values of a variable in a dataset following a condition

1 view (last 30 days)
Hi all. I have a dataset 'data' (16 x 70 fields), which is a structure. Each field has 14 vectors, 1 with strings (1 value) and the rest with integers (1 value per field). I want to replace all the values of one of those vectors for each field (let's call it VECTOR) for the whole data set following the criteria: if it's 0, replace it with 1, if it's 1, replace it with 0. I've tried this:
data(data.VECTOR == 1) = 0;
data(data.VECTOR == 0) = 1;
But it doesn't work. Any ideas?
By the way, there are only three possible values: -1, 0, 1. I want to replace the 0 with 1, and the 1 with 0, while leaving the -1 unchanged.
  12 Comments
Walter Roberson
Walter Roberson on 12 Jan 2019
Edited: Walter Roberson on 12 Jan 2019
Another approach if your original values are only -1, 0, 1:
map = [-1, 1, 9]; %new values for -1, 0, 1
for idx = 1 : numel(data)
data(idx).sideReport = map(data(idx).sideReport + 2);
data(idx).sideAccu = map(data(idx).sideAccu + 2);
end
adding 2 transforms the -1, 0, 1 (not valid indices) to [1 2 3], which can be used in a lookup table.
Renzo Lanfranco
Renzo Lanfranco on 13 Jan 2019
Thanks so much, Walter. This solution worked perfectly:
mask0 = data(idx).sideReport == 0;
mask1 = data(idx).sideReport == 1;
data(idx).sideReport(mask0) = 1;
data(idx).sideReport(mask1) = 0;

Sign in to comment.

Answers (0)

Categories

Find more on Author Block Masks in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!