Community Profile

photo

Adam Wyatt


STFC

Last seen: 7 meses hace Con actividad desde 2013

Followers: 0   Following: 0

Contacto

Estadísticas

All
  • Community Group Solver
  • First Review
  • Revival Level 2
  • Knowledgeable Level 2
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
randomly select elements of an array
Use "randsample" For array: Arry = [1 4 5 7 8 9]; Smpl = randsample(Arry, 3) For strings: Arry = ["Yellow" "Green" "Blue" "...

más de 2 años hace | 0

Respondida
How to find and access a file / folder on the entire hard drive with Matlab?
I would not recommend performing the search itself directly in matlab. Instead I would invoke the system search using the "syste...

más de 3 años hace | 0

Respondida
How do I check a each element of a 2 x n matrix for values to remove?
Is your lens a spherical lens, in which case there is a very simple solution (Google intersection of line with sphere: Wiki). D...

más de 3 años hace | 0

| aceptada

Respondida
How can I convert this image in binary image such that region inside red curve is filled with white while rest with black?
Your question is quite vague and the methodology and results depend very much on how the images vary. Remember that the compute...

más de 3 años hace | 0

Respondida
Big 3D gridded data set
If you really do need all the data, then you can also use "matfile". You bascially then have a cell-array of matfile objects and...

más de 3 años hace | 0

Respondida
Load text file from subfolder
BaseDir = 'BaseDir'; % Change string to base folder tmp = dir(BaseDir); % Obtains list of files ...

más de 3 años hace | 0

Respondida
How to make and use many fast functions in Matlab?
My recommendation would be to write a class which would significantly reduce the redundancy in your code. You can use dependent ...

más de 5 años hace | 0

Respondida
Plotting from a loop in a live script in Matlab 2016b
There is a slight workaround, which works in version 2017b (no need to manually create the axes, replace this and the title line...

más de 6 años hace | 1

Respondida
Camera identified by hardware detection application but doesn't show up in image acquisition tool
With regards to copying the data, there is an alternative method, but exactly what use it is I do not know. I've actually manage...

casi 9 años hace | 0

Respondida
What's wrong with this expression?
Are a, b, & c scalars. If so: y = a*exp(-((x-b)/c).^2); However, a more general version makes use of bsxfun ( <http://matlab...

alrededor de 9 años hace | 0

Respondida
Cylindrical to rectangular correction in image processing
Create projected co-ordinates of original image [Ny, Nx] = size(Img); x = (1:Nx).'; y = (1:Ny).'; Create original ...

alrededor de 9 años hace | 0

Respondida
How to write a Monte Carlo Simulation Code?
Your question is ill-defined. Monte-Carlo simulations simply mean perform your simulation with varying inputs such that the i...

alrededor de 9 años hace | 2

Respondida
How to show a sequence of images
You need to either add a callback function to the image/figure to respond to user key presses or mouse clicks, or you could add ...

alrededor de 9 años hace | 0

Respondida
Matlab OOP, dependent class properties, correct coding techiques
I generally just ignore this warning - you can turn it off for the line, file or all files (I've done the latter). In your sc...

alrededor de 9 años hace | 1

| aceptada

Respondida
How can I use MATLAB to estimate the parameters of an exponential-gamma convolution?
Simple solution v = fminsearch(@(v) sum(abs(Data - YourGammaConvolutionFunction(v(1), v(2), v(3))).^2), [v01 v02 v03]); ...

alrededor de 9 años hace | 0

Respondida
How to prepare data set from an Image to find out number of clusters automatically?
What do you mean cluster? The image processing toolbox has functions for doing this (if you mean a cluster is when all adjacent ...

alrededor de 9 años hace | 0

| aceptada

Respondida
How to continue GPIB reading with fscanf after EOI?
Try using fgetl to read the whole line, and then you can perform some error checking or different parsing rules. Also, surely...

alrededor de 9 años hace | 0

Respondida
Nested For loops- Pleeease HELP!!
* Your code could easily be vectorized. * *never* use i or j for indexing because these are used for sqrt(-1) and can easily c...

alrededor de 9 años hace | 0

Respondida
Which camera should i use to acquire real time video to matlab
If you cannot narrow down your choice based on specifications, pick any! http://uk.mathworks.com/hardware-support/basler-came...

alrededor de 9 años hace | 0

Respondida
Logical or not logical?
* All numbers are by default of class type "double" (unless specifically cast as int etc.). * Logical values are of class "logi...

alrededor de 9 años hace | 2

Respondida
Positive Semi-definite Matrix Problem
FYI: C' is conjugate transpose - you should use C.' if you don't want the complex conjugate. If it is indeed due to a numeric...

alrededor de 9 años hace | 0

Respondida
Which camera should i use to acquire real time video to matlab
Look here http://uk.mathworks.com/hardware-support/index.html?q=product%3A%22Image%20Acquisition%20Toolbox%22 It took about ...

alrededor de 9 años hace | 0

Respondida
How can i make a Moving Average Filter of order 4 for removing the noise from signal?
It doesn't look like you have fs=10kHz in (2) since you are aliasing that signal. Anyway, filtering can be achieved using the f...

alrededor de 9 años hace | 0

Respondida
Camera identified by hardware detection application but doesn't show up in image acquisition tool
There are a couple of methods: # Write a dll C-wrapper that can interface between Matlab and the uEye SDK and then use the lo...

más de 9 años hace | 3

Respondida
Controlling uEye µEye camera in Matlab with shared library by loadlibrary
The issue is not quite to do with handling pointers - Matlab does that quite well when connecting to DLLs - you have to pass a d...

más de 9 años hace | 0

| aceptada

Respondida
Unable to detect IDS uEye camera
I didn't get far using this route (it was my initial plan and I purchased the IMAQ toolbox just for this purpose). Anyway, the w...

más de 9 años hace | 4

| aceptada

Respondida
ActiveX, Camera uEye
ActiveX uses the COM interface, which is now no longer supported by IDS (uEye cameras). It is now recommended to use the .NET in...

más de 9 años hace | 1

| aceptada

Respondida
uEye USB camera in Matlab?
There are a couple of methods: # Write a dll C-wrapper that can interface between Matlab and the uEye SDK and then use the lo...

más de 9 años hace | 1

| aceptada

Respondida
Capture and Display image set using .NET library
Check out this post: http://stackoverflow.com/a/24937766 I've written a little function that will load the assembly if requir...

más de 9 años hace | 0