Gelöst


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

fast 5 Jahre vor

Gelöst


Find max
Find the maximum value of a given vector or matrix.

fast 5 Jahre vor

Gelöst


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

fast 5 Jahre vor

Gelöst


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

fast 5 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...

fast 5 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 ...

fast 5 Jahre vor

Beantwortet
how to convert the fraction part into intger?
Use ceil(K) or floor(K) depending on how you want to round off the fractions. or int8(K) or int16(K) or int32(K) ...

fast 5 Jahre vor | 1

Beantwortet
Element-wise Complex Magnitude Calculation
Why don't you just put it in a loop like this: A = rand(5,1) + i*rand(5,1); % Assume this is your array B=zeros(length(A),1); ...

fast 5 Jahre vor | 0

Beantwortet
Compare two strings present in excel?
Is this what you are looking for? %% Import the data [~, ~, raw] = xlsread('C:\Users\User\Documents\MATLAB\TEST.xls','Sheet1')...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
Value of variable after passing one simulation cycle
Ok this is not going to serve your purpose. There is a reason its called simulation Cycle/Cycle time. The whole model (including...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
Define a matrix in simulink whose elements are evaluated at some other functions in the same model
"to workspace" block updates that workspace after end of simulation. Instead you can use the data store memory block. Use a data...

fast 5 Jahre vor | 0

Beantwortet
Need Instantaneous PID Value
"The output I am getting is in 3x1 tf format" - This is correct because as per definition 'pid' command creates a continuous-ti...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
I'm using the input command, with multiple inputs. I don't want the user to have to re-enter all the inputs if an error occurs.
I would recommend not to use 'error' as program will stop and exit execution everytime an error occurs. Next time it will always...

fast 5 Jahre vor | 1

| akzeptiert

Beantwortet
LQR for tracking error minimization
1) Standard discrete cost function is J = Sum {x'Qx + u'Ru + 2*x'Nu}. In your case N=0. 2) "I suppose I have to use u =referen...

fast 5 Jahre vor | 2

Beantwortet
TO WORKSPACE FROM MATLAB
Create the data as a timeseries. See details here: https://in.mathworks.com/help/matlab/ref/timeseries.html For your case: t=...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
how to read lots of file and plot them
You can use this: for ii=1:54 % Number of S set of files for jj=1:3 % Number of sub files for each S index if ...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
Could anyone help me to solve the issue in the following code
May not be the best way but it works: rows_matrix=reshape(unused_rows,[],2) rows_matrix=[rows_matrix(:,1) [sort(rows_matrix(1:...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
how can i separate a matrix into a multiplication of two matrices One of Real Values and the Other for Integer values.
There are infinite combinations possible (atleast by theory) in which you can split a real number to multiplication of a real nu...

fast 5 Jahre vor | 0

Beantwortet
Outputting more than one value into Simulink system using Matlab function block
There are two things here. 1) Your function code is wrong at many places. You will have to rewrite it: function D = BAT(P) % S...

fast 5 Jahre vor | 0

Beantwortet
c2d convert to discrete time function with derivatives
Ok so your question is lacking a few crucial details and possible something is not right here. From the matrix you have given ...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
Licence Manager Error 15
Error-15 means that the workstation is not able to contact the server. See here: https://in.mathworks.com/help/polyspace_ada/po...

fast 5 Jahre vor | 0

Beantwortet
How to clip a sine wave on both side in SIMULINK?
Use saturation block. Set the saturator limits as the value where you want to chip the sine wave and you are done!!

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
hi every one, can i get help to make this, thank you
You are almost there. What is the problem? Just use: K=[a1 b1 c1; a1 b1 c2; a1 b2 c1; a1 b2 c2; a2 b1 c1; a2 b1 c2;...

fast 5 Jahre vor | 0

| akzeptiert

Gelöst


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

fast 5 Jahre vor

Gelöst


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

fast 5 Jahre vor

Beantwortet
Remove DC offset from input signal
So basically you have an aperiodic set of data with unknown DC bias value. As I had asked, if the offset is a constant value the...

fast 5 Jahre vor | 0

Beantwortet
could anyone help me to solve the issue with respect to the following code
Use this: x=[0 1 2 3 4 5 6 7 8 9 10] A = [0 0.62 0.85 0.86 0.87 0.88 0.89 0.90 0.91 0.92 0.93] B = [0 0.32 0.60 0.75 0.86 0.9...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
Index exceeds matrix dimensions. where is mistake
In line number 17 you have defined size = 4; which you are using in your 'for' loop at line 19. This variable is clashing with...

fast 5 Jahre vor | 1

Beantwortet
Using generated code in a simulink model
This should help: https://in.mathworks.com/help/simulink/ug/incorporate-c-code-using-a-matlab-function-block.html

fast 5 Jahre vor | 0

Beantwortet
Code generator in simulink
See if this helps: https://in.mathworks.com/matlabcentral/answers/415603-where-is-the-build-button-in-code-generation?s_tid=ans...

fast 5 Jahre vor | 0

| akzeptiert

Mehr laden