Sachin Kumar
自 2017 起处于活动状态
Followers: 0 Following: 0
Masters in Embedded Systems
Feeds
已回答
Best way to smooth GPS data
Check these different smoothing methods: <https://www.mathworks.com/help/signal/examples/signal-smoothing.html?s_tid=answers_...
Best way to smooth GPS data
Check these different smoothing methods: <https://www.mathworks.com/help/signal/examples/signal-smoothing.html?s_tid=answers_...
7 years 前 | 0
已回答
Converting code to use wavread to audioread
While writing data to your audio file, you can write your custom data/info as comment and you can read the same info in comment ...
Converting code to use wavread to audioread
While writing data to your audio file, you can write your custom data/info as comment and you can read the same info in comment ...
7 years 前 | 0
已回答
Simulink code generation: How can I add parameters to the generated functions from simulink models?
Check this link for examples: <https://www.mathworks.com/examples/embedded-coder/mw/ecoder-ex03300869-partition-functions-in-...
Simulink code generation: How can I add parameters to the generated functions from simulink models?
Check this link for examples: <https://www.mathworks.com/examples/embedded-coder/mw/ecoder-ex03300869-partition-functions-in-...
7 years 前 | 0
已回答
I want to execute a Matlab script inside a tcl program
You can create .exe of the MATLAB file using 'deploytool' and run the exe from tcl.
I want to execute a Matlab script inside a tcl program
You can create .exe of the MATLAB file using 'deploytool' and run the exe from tcl.
7 years 前 | 1
已回答
Read from other software same PC. GUI Matlab
Simple technique is, write data to a file from the program and hear/read the same file from GUI functions to find the data. You ...
Read from other software same PC. GUI Matlab
Simple technique is, write data to a file from the program and hear/read the same file from GUI functions to find the data. You ...
7 years 前 | 0
| 已接受
已回答
Repeating sequence Error ?
This is expected behavior only. The execution depends on step size used to simulate the block, change the solver step size in co...
Repeating sequence Error ?
This is expected behavior only. The execution depends on step size used to simulate the block, change the solver step size in co...
7 years 前 | 0
| 已接受
已回答
matlab cannot find other gcc versions (linux)
Check this link <https://www.mathworks.com/matlabcentral/answers/137228-setup-mex-compiler-for-r2014a-for-linux#answer_263109>
matlab cannot find other gcc versions (linux)
Check this link <https://www.mathworks.com/matlabcentral/answers/137228-setup-mex-compiler-for-r2014a-for-linux#answer_263109>
7 years 前 | 0
已解决
Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...
7 years 前
已解决
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
7 years 前
已解决
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...
7 years 前
已解决
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 ...
7 years 前
已回答
Porting C++ to Simulink Code
First thing you should know is, Simulink is not a usual coding language like C,C++,etc., it's a graphical programming environmen...
Porting C++ to Simulink Code
First thing you should know is, Simulink is not a usual coding language like C,C++,etc., it's a graphical programming environmen...
7 years 前 | 0
| 已接受
已回答
Time and Frequency domain variable delay filter implementation
nfft = 2^nextpow2(2*LEN); fax = Fs*(-nfft/2:nfft/2-1)'/nfft; shft = exp(-1j*delay*2*pi*fax); % w=2*pi*fax,, Frequency fu...
Time and Frequency domain variable delay filter implementation
nfft = 2^nextpow2(2*LEN); fax = Fs*(-nfft/2:nfft/2-1)'/nfft; shft = exp(-1j*delay*2*pi*fax); % w=2*pi*fax,, Frequency fu...
7 years 前 | 0
已回答
How do I solve a second order ordinary differential equation with boundary conditions?
Below link has some examples on using bvp4c, you can verify with these examples: <https://www.mathworks.com/matlabcentral/fil...
How do I solve a second order ordinary differential equation with boundary conditions?
Below link has some examples on using bvp4c, you can verify with these examples: <https://www.mathworks.com/matlabcentral/fil...
7 years 前 | 0
已回答
How do I get two while loops to keep repeating?
Instead of this statement : (0 <= hinitial < 1.71) %these kind of statements not supported in MATLAB. use ((0<=hinitial) && (hi...
How do I get two while loops to keep repeating?
Instead of this statement : (0 <= hinitial < 1.71) %these kind of statements not supported in MATLAB. use ((0<=hinitial) && (hi...
7 years 前 | 1
已回答
Building program from simulink to TI problem
There are two files with same name 's'. MATLAB chooses s.m instead of s.slx since s.m is in higher PATH. C:\Users\Susan\Desktop...
Building program from simulink to TI problem
There are two files with same name 's'. MATLAB chooses s.m instead of s.slx since s.m is in higher PATH. C:\Users\Susan\Desktop...
7 years 前 | 1
已回答
Can't activate MATLAB R2012a on Linux 32-bit Ubuntu MATE 16.04
Following link has solution for similar error: <https://in.mathworks.com/matlabcentral/answers/100235-why-can-t-i-activate-m...
Can't activate MATLAB R2012a on Linux 32-bit Ubuntu MATE 16.04
Following link has solution for similar error: <https://in.mathworks.com/matlabcentral/answers/100235-why-can-t-i-activate-m...
7 years 前 | 1
已解决
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...
7 years 前
已解决
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:...
7 years 前
已回答
How to make the CAN pack/unpack model reflect the change when a new database file/message is selected programatically?
The below links has few answers for the questions that looks similar to your question: <https://www.mathworks.com/matlabcentr...
How to make the CAN pack/unpack model reflect the change when a new database file/message is selected programatically?
The below links has few answers for the questions that looks similar to your question: <https://www.mathworks.com/matlabcentr...
7 years 前 | 1
已回答
How can I plot real time graph from i2c data that is transmitted over bluetooth?
The MATLAB code works fine here. The problem is in the arduino code, you need to initial "BTSerial" using below function in your...
How can I plot real time graph from i2c data that is transmitted over bluetooth?
The MATLAB code works fine here. The problem is in the arduino code, you need to initial "BTSerial" using below function in your...
7 years 前 | 2
| 已接受
已回答
How can I represent a multiple input and single output (MISO) transfer function in MATLAB
You can create your model as below: Numerator = {[0.3 -1] [0.8 72.3]}; %Numerators of u_1 and u_2 Denominator = {[1 21.8 6...
How can I represent a multiple input and single output (MISO) transfer function in MATLAB
You can create your model as below: Numerator = {[0.3 -1] [0.8 72.3]}; %Numerators of u_1 and u_2 Denominator = {[1 21.8 6...
7 years 前 | 2
| 已接受