답변 있음
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년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 1

| 수락됨