Beantwortet
Creating a block for a term like (4s+1) in simulink?
I suggest you try to understand why 4*s+1 cannot be simulated. Although there are workarounds. hint: what does s do to a time do...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
Find a value using an index obtained from a different matrix with same dimensions
Something like this maybe: %% your matrices val = load('Total_matrix_cases.txt'); x = load('Total_matrix_rotations.txt'); ...

mehr als 2 Jahre vor | 1

| akzeptiert

Beantwortet
Higher order Hungarian algorithm?
Somthing like this maybe; a=[ 4 5 2]; b=[-8 -13 3]; c=[ 4 7 -9 11]; thresholdValue = 2; [A,B,C] = meshgrid(a,b,c);...

mehr als 2 Jahre vor | 0

Beantwortet
Ive completed code for an assignment but receive strange answers any help?
You are getting NaN because your s1 is equal to s2: s1=-wnN*zetaN-wdN*i s2=-wnN*zetaN-wdN*i where you forgot the ...+wdN*i fo...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
How to create this equation in simulink?
you can use 'delay' block to make the u(t) = u(t-1) part of the equation. you can use another 'delay' block to make the e(t) = ...

mehr als 2 Jahre vor | 0

Beantwortet
Formating a structs value
Something like this maybe: syms v1 v2 ; symbols = [v1;v2]; equations = [3/125 - v1/500 == v1*(0.0005 - 0.0001i) - 0.0005*v2 ...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
What is End of life and End of support for MATLAB version R2018a ?
Checkout the answer here. To quote the staff response "The end of life (EOL) for MATLAB releases depends on the date when Math...

mehr als 2 Jahre vor | 0

Beantwortet
How to change the parameter value at run time in Matlab Simulink
I think what you are looking for is the dashboard, link here. It provides an interactive interface with a running model.

mehr als 2 Jahre vor | 0

Beantwortet
How do determine the maximum and minimum point form origin on a contour graph
Not sure exactly what you want but contour function can give you interpolated x-y positions for a specific level. From there you...

mehr als 2 Jahre vor | 0

| akzeptiert

Gelöst


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

mehr als 2 Jahre vor

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

mehr als 2 Jahre vor

Gelöst


Create a vector
Create a vector from 0 to n by intervals of 2.

mehr als 2 Jahre vor

Gelöst


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

mehr als 2 Jahre vor

Gelöst


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


Inner product of two vectors
Find the inner product of two vectors.

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 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 2 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 2 Jahre vor

Beantwortet
how to learn mil,sil and hil tool testing in real time example
A good start is always mathworks website. Find the link in the answer here.

mehr als 2 Jahre vor | 0

Beantwortet
Couple ODE System not enough Input arguments, Why?
You should use @ symbol before the functions in your bvp4c call. Now you have another error, good luck solving it :D hint: what ...

mehr als 2 Jahre vor | 1

Beantwortet
How to draw the letter phi on matlab?
Here are bunch of greek characters and how you can put them in a string/character: sprintf('%c ', 910:1000) phi = sprintf('%c'...

mehr als 2 Jahre vor | 0

Beantwortet
Can I see code changes in the editor window?
You can right click the .m file on Matlab's 'Current Folder' view. There under the 'Source Control' you have options to 'Compare...

mehr als 2 Jahre vor | 0

Beantwortet
Could anyone tell me what it means in the code(xfer1(i) = xfer(5,1))?
So from the context, it seems like 'xfer' is the complex value of your transfer function at a particular 'w', it is a 5x5 matrix...

mehr als 2 Jahre vor | 2

| akzeptiert

Gelöst


Calculate Inner Product
Given two input matrices, |x| and |y|, check if their inner dimensions match. * If they match, create an output variable |z|...

mehr als 2 Jahre vor

Gelöst


Find the Best Hotels
Given three input variables: hotels - a list of hotel names ratings - their ratings in a city cutoff - the rating at which yo...

mehr als 2 Jahre vor

Gelöst


Calculate BMI
Given a matrix hw (height and weight) with two columns, calculate BMI using these formulas: 1 kilogram = 2.2 pounds 1 inch = 2...

mehr als 2 Jahre vor

Beantwortet
How to plot 3-D bode from the derived transfer function?
Here is one way: % undamped system where w defines the natural frequency and s is the % s-domain frequency grid variable sys ...

mehr als 2 Jahre vor | 0

Gelöst


Plot Damped Sinusoid
Given two vectors |t| and |y|, make a plot containing a blue ( |b| ) dashed ( |--| ) line of |y| versus |t|. Mark the minimum...

mehr als 2 Jahre vor

Mehr laden