Below is the code that you can use to add exclude a category from your feed:
/** Exclude category ID #5 from your feed */
function exclude_category_feed($query) {
if ($query->is_feed) {
$query->set('cat','-5');
}
return $query;
}
add_filter( 'pre_get_posts','exclude_category_feed' );