Answered Crop an image using coordinate
You can try using the following command
I2 = imcrop(im,[x1 y1 x2-x1 y2-y1]);
|imcrop| uses the following syntax:
I...
10 years ago | 4
Answered Addtion of two matrix.
Since MATLAB allows matrix manipulations directly, you can add 2 matrices A and B of the same size using a single line of code: ...
10 years ago | 0
Answered help with this matlab script
You are getting this error because variables |x| and |y| are not defined in your script.
I think what you intended was somethi...
Answered How to use prctile within grpstats?
I understand that you are trying to compute the percentiles on the values grouped using a column.
The general syntax of 'grpst...