已回答
Changing from "Model Type Geographic" to "Model Type Projected"
Hi, You can use the function <http://www.mathworks.com/help/map/ref/geotiffread.html geotiffread> to obtain the spatial r...

9 years 前 | 0

| 已接受

已回答
Downloaded Support Package [Digilent DAQ] not accessed by stand-alone executable
Hi Brian, This error might be occurring because the drivers for Digilent are not installed on the deployment machine. To reso...

9 years 前 | 0

已回答
Solving 2 linear equations for 2 unknowns using arrays? - Part II, perhaps with syms?
Hi, Looks like you have an over-determined system with 2 unknowns 'sigma1' and 'sigma2' and a number of equations. Simplifyi...

9 years 前 | 1

已回答
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 前 | 4

已回答
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 前 | 0

已回答
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...

10 years 前 | 0

已回答
Create a submatrix with rows corresponding to a specified value in the first column of a matrix
The loop is producing 4 answers since for each value of |i|, one matrix is created. You need a way to eliminate the rows that ...

10 years 前 | 1

| 已接受

已回答
how to match an image descriptor to all descriptor in database
You can use 'cellfun' to apply a function to each cell in the cell array. Here is some code tailored to your application: ...

10 years 前 | 0

已回答
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...

10 years 前 | 0

已回答
Need help creating a "for loop" for the following series.
In my understanding you are trying to convert the above equation to MATLAB code using 'for' loops. The last term in the equat...

10 years 前 | 1

| 已接受