Community Profile

photo

River Rock


2012년부터 활동

Followers: 0   Following: 0

I don't want my name to be associated with Mathworks in any possible way.

통계

All
  • Thankful Level 3
  • Solver

배지 보기

Feeds

보기 기준

질문


save gui handles between uiwait/uiresume calls
Hi, I'd like to implement the following behaviour in my gui app: - start iterating through a for loop and compute an array ...

거의 9년 전 | 답변 수: 1 | 1

1

답변

문제를 풀었습니다


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

9년 초과 전

질문


large differences between continuous and discrete tf
Hello, While working on an assignment, I noticed some differences between continuous and discrete tf and I cannot figure out ...

9년 초과 전 | 답변 수: 0 | 0

0

답변

질문


Code completion for toolbox functions
Hi I installed the Symbolic Math Toolbox over an existing Matlab 2012a installation and I noticed there is no auto-completion...

거의 10년 전 | 답변 수: 0 | 0

0

답변

답변 있음
Reading a 5.0 mat file in c++
The example found in /extern/examples/eng_mat/matdgns.c also generate errors, as I fail to link the static library Using ...

10년 초과 전 | 0

질문


Reading a 5.0 mat file in c++
Hi :) How would you recommend me to read the contents of a 5.0 mat-file in c++? I've found a mat.h file in matlabroot/exte...

10년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Modal realization in Matlab
bump?

11년 초과 전 | 0

질문


Modal realization in Matlab
Hi Given the following transfer matrix : T = From input 1 to output: s - 1 ------------- s^2 + 3 s + ...

11년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Find a PID Controller
Hi I want to find a PID Controller for the following process: Hp(s) = 1 / (s^2 + 1) or Hp = tf (1, [1 0 1] ); Pe...

11년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Represent Simulink Integrator block as Matlab Function
My main goal is to implement the differential equations of a physical system using a single Matlab Function. As the sums and gai...

11년 초과 전 | 0

답변 있음
Represent Simulink Integrator block as Matlab Function
Can anybody suggest a better way of implementing the numerical integration ? The code has to be written inside the Matlab Functi...

11년 초과 전 | 0

질문


Represent Simulink Integrator block as Matlab Function
Hi. I need to implement the following behavior : <<http://i.imgur.com/a6SsM.png>> The Integrator and my_Integrator bloc...

11년 초과 전 | 답변 수: 5 | 1

5

답변

문제를 풀었습니다


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

11년 초과 전

문제를 풀었습니다


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

11년 초과 전

문제를 풀었습니다


Is my wife right?
Regardless of input, output the string 'yes'.

11년 초과 전

문제를 풀었습니다


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

11년 초과 전

문제를 풀었습니다


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

11년 초과 전

문제를 풀었습니다


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

11년 초과 전

문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

11년 초과 전

답변 있음
Simulink transfer function with sinusoidal parameters
Thanks for your great response I had to adapt the diagram for the denominator [1 K 0], as you use [1 K 1] in your example. ...

11년 초과 전 | 0

질문


Simulink transfer function with sinusoidal parameters
Hi I need to design a transfer function in the following form: 1 / (s^2 + K*s) where K is scalar and varies sinusoidal; the d...

11년 초과 전 | 답변 수: 2 | 1

2

답변

답변 있음
Simulink transfer function with sinusoidal parameter
Your answer does solve the initial problem. Now how about modifying the parameters of the denominator?

11년 초과 전 | 0

질문


Simulink transfer function with sinusoidal parameter
Hi I need to design a transfer function in the following form: K/ (Ts + 1) where the numerator K is scalar and varies sinuso...

11년 초과 전 | 답변 수: 2 | 0

2

답변

문제를 풀었습니다


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

11년 초과 전

문제를 풀었습니다


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

11년 초과 전

문제를 풀었습니다


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

11년 초과 전

문제를 풀었습니다


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

11년 초과 전

질문


Simulink constant parameter read inside Matlab Function block
Hi. I defined some Simulink parameters to the Model Workspace of a Simulink model. When used in a Constant block, the code com...

11년 초과 전 | 답변 수: 2 | 0

2

답변

답변 있음
Reading a wire value from Simulink into the Command Window or GUIDE
Thanks for your answer; I was able to get the data from the filter's output data=get_param('main/level/level_filter','Runtime...

11년 초과 전 | 0

질문


Reading a wire value from Simulink into the Command Window or GUIDE
I want to read the values that passes through a wire in my Simulink model. This value should be displayed in a text field on ...

11년 초과 전 | 답변 수: 2 | 0

2

답변