Namnendra
MathWorks
Followers: 0 Following: 0
Feeds
답변 있음
Version control of Matlab Coder generated files
Hi Øystein, I understand that you want to "tag" the generated files with the current git version of the MATLAB repository when ...
Version control of Matlab Coder generated files
Hi Øystein, I understand that you want to "tag" the generated files with the current git version of the MATLAB repository when ...
대략 1년 전 | 0
답변 있음
Simulink: How to select and save coordinates from a video viewer block.
Hey Edward, To read out and transfer the coordinates of a red object that you have detected using a median filter in MATLAB, yo...
Simulink: How to select and save coordinates from a video viewer block.
Hey Edward, To read out and transfer the coordinates of a red object that you have detected using a median filter in MATLAB, yo...
대략 1년 전 | 0
답변 있음
Simulink Audio Toolbox Compressor Specify on input port
Hey Matthew, I understand that you want to enable the "Specify on input port" option for the Compressor block parameters and al...
Simulink Audio Toolbox Compressor Specify on input port
Hey Matthew, I understand that you want to enable the "Specify on input port" option for the Compressor block parameters and al...
대략 1년 전 | 0
답변 있음
Report generator to Word Table how to use AlowBreakAcrossPages
Hey Daniel, I understand that you want to move a table row to new page if the row doesn't fit in the page. For that you want to...
Report generator to Word Table how to use AlowBreakAcrossPages
Hey Daniel, I understand that you want to move a table row to new page if the row doesn't fit in the page. For that you want to...
대략 1년 전 | 0
답변 있음
Corrupted .m file
Hey Jason, I understand the frustration of losing unsaved modifications in MATLAB due to a reboot. Unfortunately, if the files ...
Corrupted .m file
Hey Jason, I understand the frustration of losing unsaved modifications in MATLAB due to a reboot. Unfortunately, if the files ...
대략 1년 전 | 0
답변 있음
Creating an efficient frontier
Hey Aaron, The step function is designed to generate a vector of values with a constant step size between two given limits. In ...
Creating an efficient frontier
Hey Aaron, The step function is designed to generate a vector of values with a constant step size between two given limits. In ...
1년 초과 전 | 0
답변 있음
Creating a binary mask from pixels within rectangles
Hey Aaron, To create binary masks from the regions of interest (ROIs) defined by the rectangles in your images, you can follow ...
Creating a binary mask from pixels within rectangles
Hey Aaron, To create binary masks from the regions of interest (ROIs) defined by the rectangles in your images, you can follow ...
1년 초과 전 | 0
답변 있음
Invalid Mex File: Gateway Function is missing in compiled app
Hey Aaron, This error message typically occurs when the Mex-file is not compiled correctly or is missing the gateway function t...
Invalid Mex File: Gateway Function is missing in compiled app
Hey Aaron, This error message typically occurs when the Mex-file is not compiled correctly or is missing the gateway function t...
1년 초과 전 | 0
답변 있음
Way to make timescope "alwaysontop" or embed timescope object in uifigure?
Hey Aaron, The timescope object in MATLAB does not have an option to set it as always on top, but you can achieve this behavior...
Way to make timescope "alwaysontop" or embed timescope object in uifigure?
Hey Aaron, The timescope object in MATLAB does not have an option to set it as always on top, but you can achieve this behavior...
1년 초과 전 | 0
답변 있음
Multiple Arduino with same simulink block diagram
Hey Aakash, One solution is to use the Simulink Support Package for Arduino Hardware to communicate between the two Arduinos. Y...
Multiple Arduino with same simulink block diagram
Hey Aakash, One solution is to use the Simulink Support Package for Arduino Hardware to communicate between the two Arduinos. Y...
1년 초과 전 | 0
답변 있음
Foreground DAQ acquisition after background acquisition suddenly not getting correct number of scans
Hey Aaron, It's difficult to say exactly what might have caused this sudden change in behavior without more information, but on...
Foreground DAQ acquisition after background acquisition suddenly not getting correct number of scans
Hey Aaron, It's difficult to say exactly what might have caused this sudden change in behavior without more information, but on...
1년 초과 전 | 0
답변 있음
Creating multiple circuit using same nport RF object in MATLAB with different node assignment?
The error message suggests that you are trying to add the same `nport_obj` (which is an `S-parameters` object) to multiple circu...
Creating multiple circuit using same nport RF object in MATLAB with different node assignment?
The error message suggests that you are trying to add the same `nport_obj` (which is an `S-parameters` object) to multiple circu...
1년 초과 전 | 0
답변 있음
How do I find the trough of my data with stated x limits where it should occur?
As far as I understand your issue, if the peak is always located around x=60, you can modify the code to only search for the tro...
How do I find the trough of my data with stated x limits where it should occur?
As far as I understand your issue, if the peak is always located around x=60, you can modify the code to only search for the tro...
1년 초과 전 | 0
문제를 풀었습니다
The Goldbach Conjecture, Part 2
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...
2년 초과 전
문제를 풀었습니다
Mandelbrot Numbers
The <http://en.wikipedia.org/wiki/Mandelbrot_set Mandelbrot Set> is built around a simple iterative equation. z(1) = c z...
2년 초과 전
문제를 풀었습니다
Find the peak 3n+1 sequence value
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...
2년 초과 전
문제를 풀었습니다
Find common elements in matrix rows
Given a matrix, find all elements that exist in every row. For example, given A = 1 2 3 5 9 2 5 9 3 2 5 9 ...
2년 초과 전
문제를 풀었습니다
Find state names that start with the letter N
Given a list of US states, remove all the states that start with the letter N. If s1 = 'Alabama Montana Nebraska Vermont Ne...
2년 초과 전
문제를 풀었습니다
QWERTY coordinates
Given a lowercase letter or a digit as input, return the row where that letter appears on a standard U.S. QWERTY keyboard and it...
2년 초과 전
문제를 풀었습니다
Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...
2년 초과 전
문제를 풀었습니다
Remove the polynomials that have positive real elements of their roots.
The characteristic equation for a dynamic system is a polynomial whose roots indicate its behavior. If any of the roots of the p...
2년 초과 전
문제를 풀었습니다
Prime factor digits
Consider the following number system. Calculate the prime factorization for each number n, then represent the prime factors in a...
2년 초과 전
문제를 풀었습니다
Find relatively common elements in matrix rows
You want to find all elements that exist in greater than 50% of the rows in the matrix. For example, given A = 1 2 3 5 ...
2년 초과 전
문제를 풀었습니다
Get the area codes from a list of phone numbers
Given a string of text with phone numbers in it, return a unique'd cell array of strings that are the area codes. s = '508-647...
2년 초과 전
문제를 풀었습니다
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...
2년 초과 전
문제를 풀었습니다
Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...
2년 초과 전
문제를 풀었습니다
Binary numbers
Given a positive, scalar integer n, create a (2^n)-by-n double-precision matrix containing the binary numbers from 0 through 2^n...
2년 초과 전
문제를 풀었습니다
Alphabetize by last name
Given a list of names in a cell array, sort the list by the last name. So if list = {'Barney Google','Snuffy Smith','Dagwood ...
2년 초과 전
문제를 풀었습니다
Counting Sequence
Given a vector x, find the "counting sequence" y. A counting sequence is formed by "counting" the entries in a given sequence...
2년 초과 전
문제를 풀었습니다
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
2년 초과 전