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

casi 9 años hace | 0

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

casi 9 años hace | 1

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

más de 9 años hace | 4

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 1

| aceptada

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 1

| aceptada