Borrar filtros
Borrar filtros

Unknown Error Message from using interp1

2 visualizaciones (últimos 30 días)
Ashley Megow
Ashley Megow el 30 de Oct. de 2020
Respondida: Walter Roberson el 30 de Oct. de 2020
Using this table how do I resolve the error message below

Respuestas (1)

Walter Roberson
Walter Roberson el 30 de Oct. de 2020
if year < 1990 | year > 2018 | mod(year,2) == 1
disp("This is not an even year from 1990 to 2018");
else
male_vote = interp1(YourTable.Year, YourTable.Male, year);
female_vote = interp1(YourTable.Year, YourTable.Female, year);
go = 0;
end
But I would suggest
if year < 1990 | year > 2018 | mod(year,2) == 1
disp("This is not an even year from 1990 to 2018");
else
mask = YourTable.Year == year;
male_vote = YourTable(mask).Male;
female_vote = YourTable(mask).Female;
go = 0;
end

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by