Answered
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...

ongeveer 9 jaar ago | 0

Answered
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...

ongeveer 9 jaar ago | 1

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...

bijna 10 jaar 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: ...

bijna 10 jaar 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...

bijna 10 jaar ago | 0

Answered
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 ...

bijna 10 jaar ago | 1

| accepted

Answered
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: ...

bijna 10 jaar ago | 0

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...

bijna 10 jaar ago | 0

Answered
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...

bijna 10 jaar ago | 1

| accepted