MATLAB: How to convert UTC timehour into IST time hour

convertion of utc to istutc

I have UTC time in 24 hourly time and i need to convert it into IST. For example i have UTC time as 18.607 and i need to convert it into IST time format.

Best Answer

Since IST is simply UTC +5:30, in the absence of date, it's simply:
ISTtime = mod(UTCtime + 5.5, 24)