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

etwa 9 Jahre vor | 0

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

mehr als 9 Jahre vor | 3

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

mehr als 9 Jahre vor | 0

| akzeptiert

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

mehr als 9 Jahre vor | 4

| akzeptiert

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

mehr als 9 Jahre vor | 1

| akzeptiert

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

mehr als 9 Jahre vor | 1

| akzeptiert

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

mehr als 9 Jahre vor | 0

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

etwa 10 Jahre vor

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

mehr als 10 Jahre vor

Gelöst


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

mehr als 10 Jahre vor

Gelöst


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

mehr als 10 Jahre vor

Gelöst


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

mehr als 10 Jahre vor

Gelöst


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

mehr als 10 Jahre vor

Gelöst


Is my wife right?
Regardless of input, output the string 'yes'.

mehr als 10 Jahre vor

Gelöst


create numeric palindromes and their square roots
Given a number n (1<=n<=9), return a left justified numeric matrix p with all the palindromes of the form 1 to n and back to 1. ...

mehr als 10 Jahre vor

Gelöst


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

mehr als 10 Jahre vor

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

mehr als 10 Jahre vor