Programming Languages:
Python, C++, C, Java, C#, Javascript, R, MATLAB, SQL, HTML, CSS, Arduino, Shell, Assembly, VHDL, Visual Basic
Spoken Languages:
English
Pronouns:
He/him
Python, C++, C, Java, C#, Javascript, R, MATLAB, SQL, HTML, CSS, Arduino, Shell, Assembly, VHDL, Visual Basic
Spoken Languages:
English
Pronouns:
He/him
統計
All
Feeds
回答済み
Single error model in nlmefit and nlmefitsa
Hi @Haiyang, You are right, and this isn't a UI limitation you're missing — it's a documented restriction. If you check the f...
Single error model in nlmefit and nlmefitsa
Hi @Haiyang, You are right, and this isn't a UI limitation you're missing — it's a documented restriction. If you check the f...
1日 前 | 0
回答済み
How to Synchronize CPU and CLA execution on C2000 MCU
Hi @Valeriy, Since your CLA end of task interrupt has to be handled as a top level interrupt and can't touch your fast loop...
How to Synchronize CPU and CLA execution on C2000 MCU
Hi @Valeriy, Since your CLA end of task interrupt has to be handled as a top level interrupt and can't touch your fast loop...
5日 前 | 0
| 採用済み
回答済み
What does the “Interference Loss” parameter in the Receiver section of Satellite Link Budget Analyzer represent, and does it affect the receiver Noise Figure?
Hi @한솔, Short answer: Interference Loss is a link-level power degradation term (grouped with polarization loss and atmospheri...
What does the “Interference Loss” parameter in the Receiver section of Satellite Link Budget Analyzer represent, and does it affect the receiver Noise Figure?
Hi @한솔, Short answer: Interference Loss is a link-level power degradation term (grouped with polarization loss and atmospheri...
9日 前 | 0
回答済み
PCB Antenna Feed-point creation
Hi @Scott, Two things going on here, both expected behavior on MathWorks' side (not a bug): Feed points: Gerber files don'...
PCB Antenna Feed-point creation
Hi @Scott, Two things going on here, both expected behavior on MathWorks' side (not a bug): Feed points: Gerber files don'...
20日 前 | 0
解決済み
Oh Zero Zero Zero!!!
Hello all, So you have to find the largest section of zeros in a vector and then find the length of those zeros and there start...
24日 前
解決済み
Create an index-powered vector
Given a input vector x, return y as index-powered vector as shown below. Example x = [2 3 6 9] then y should be [...
24日 前
解決済み
Count consecutive 0's in between values of 1
So you have some vector that contains 1's and 0's, and the goal is to return a vector that gives the number of 0's between each ...
24日 前
解決済み
Find nth maximum
Find nth maximum in a vector of integer numbers. Return NaN if no such number exists. x = [2 6 4 9 -10 3 1 5 -10]; So ...
24日 前
解決済み
Implement a bubble sort technique and output the number of swaps required
A bubble sort technique compares adjacent items and swaps them if they are in the wrong order. This is done recursively until al...
24日 前
解決済み
Set a diagonal
Given a matrix M, row vector v of appropriate length, and diagonal index d (where 0 indicates the main diagonal and off-diagonal...
24日 前
解決済み
Insert zeros into vector
Insert zeros after each elements in the vector. Number of zeros is specified as the input parameter. For example: x = [1 2 3 ...
24日 前
回答済み
C2000 Control Blockset does not work
Hi @BTV, I took a close look at your three screenshots and I don't think there's anything wrong with your block setup at all....
C2000 Control Blockset does not work
Hi @BTV, I took a close look at your three screenshots and I don't think there's anything wrong with your block setup at all....
24日 前 | 0
| 採用済み
回答済み
POLYAREA not matching up total of subareas
Hi @dpb, Nice write-up. Thanks for including the code and plot. That made this easy to actually chase down rather than guess ...
POLYAREA not matching up total of subareas
Hi @dpb, Nice write-up. Thanks for including the code and plot. That made this easy to actually chase down rather than guess ...
25日 前 | 1
| 採用済み
解決済み
Sums of Distinct Powers
You will be given three numbers: base, nstart, and nend. Write a MATLAB script that will compute the sum of a sequence of both ...
27日 前
解決済み
Pandigital Multiples of 11 (based on Project Euler 491)
A "Pandigital number of order X" is one that contains all of the numbers from 0 to X, but with no leading zeroes. If X>9, the cy...
27日 前
解決済み
Digit concentration in Champernowne's constant
Consider the first 50 digits of Champernowne's constant 0.12345678910111213141516171819202122232425262728293... The...
27日 前
解決済み
geometric progression
I've modified my <http://uk.mathworks.com/matlabcentral/cody/problems/2800-arithmetic-progression previous program> so that it n...
29日 前
解決済み
arithmetic progression
I've written a program to generate the first few terms of <https://en.wikipedia.org/wiki/Arithmetic_progression arithmetic progr...
29日 前
解決済み
Find similar sequences
Another problem inspired by a question on the <http://www.mathworks.com/matlabcentral/answers answers> forum. Given a matrix ...
29日 前
解決済み
Generate Square Wave
Generate a square wave of desired length, number of complete cycles and duty cycle. Here, duty cycle is defined as the fraction ...
29日 前
解決済み
Largest Geometric Series
Extension of Ned Gulley's wonderful Problem 317. In a geometric series, ratio of adjacent elements is always a constant value. ...
29日 前
回答済み
How to develop simulink drivers for custom ECU hardware
Hi @Vijith Natarajan, Good question. Since you already have working C driver libraries, after doing some research, you don't ...
How to develop simulink drivers for custom ECU hardware
Hi @Vijith Natarajan, Good question. Since you already have working C driver libraries, after doing some research, you don't ...
29日 前 | 0
| 採用済み
解決済み
Test if a Number is a Palindrome without using any String Operations
*Description* Given an integer _X_, determine if it is a palindrome number. That is, _X_ is equal to the _X_ with the digits ...
30日 前
解決済み
Increment a number, given its digits
Take as input an array of digits (e.g. x = [1 2 3]) and output an array of digits that is that number "incremented" properly, (i...
30日 前
解決済み
Split bread like the Pharaohs - Egyptian fractions and greedy algorithm
How would you split 5 loaves of bread among 8 people in all fairness? Get a hint from the Pharaohs. 5/8 = 4/8 + 1/8 , i.e. each ...
30日 前
解決済み
Convert Roman to Arabic Numerals
Based upon what I see on tv and at the movies, the use of Roman numerals indicates something is important or sophisticated (e.g....
30日 前
解決済み
Number of 1s in the Binary Representation of a Number
*Description* Return the number of 1s in the (unsigned integer) binary representation of a number. This function should be ab...
30日 前
解決済み
Find an optimal placement of coolers on a grid
In a certain chemical plant, 6 new pieces of cooling equipment (coolers) are to be installed in a vacant space. This vacant spac...
約1ヶ月 前
解決済み
Characterize fluid flow in a pipe as to laminar or turbulent
In fluid mechanics, characterizing the flow in a pipe is essential to predicting its behavior. The flow pattern can either be la...
約1ヶ月 前
解決済み
Find an overlap in the cleaning schedule of two tank reactors
In a certain pharmaceutical production company, there are two tank reactors operating simultaneously and independent of each oth...
約1ヶ月 前











