I want to normalize just one column, how do i do that ?
Show older comments
Accepted Answer
More Answers (1)
use
data(:,12)=data(:,12)/max(abs(data(:,12)));
if your data in column 12 is not negative, then you can leave out the abs() function
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!