Set Views Title Programatically in Drupal 7

<?php
function YOUR_MODULE_preprocess_views_view(&$vars) {
 
  // If it is the view you want to change
  if ($vars['view']->name == 'your_view') {
 
    // Override view's title, drupal_set_title() was not working
    $vars['view']->build_info['title'] = $my_title;
 
  }
}