문제를 풀었습니다


Counting pulses in a signal
Count the number of pulses that are the result of summing each pulse generator block. Pulse Generator blocks produce a recurr...

8년 초과 전

문제를 풀었습니다


Add damping to a mass spring system
Model an ideal mass-spring-damper system shown below where the spring is initially stretched. <<http://blogs.mathworks.com/im...

8년 초과 전

문제를 풀었습니다


Make a full wave rectifier
Produce a full wave rectifier waveform for the given sine wave source. For a sine wave input, the output of the full wave rec...

8년 초과 전

문제를 풀었습니다


Make a half wave rectifier
Produce a signal that outputs the given sine wave source when it is greater than zero and outputs zero when it is less than zero...

8년 초과 전

문제를 풀었습니다


Add a block to a model
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/add-block-eqn.png>> In this case, the slope of...

8년 초과 전

문제를 풀었습니다


Produce a sine wave
Produce a sine wave with amplitude 3: <<http://blogs.mathworks.com/images/seth/cody/sine-eqn.png>>

8년 초과 전

문제를 풀었습니다


Add offset to a signal
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/add-offset-eqn.png>> You should see a downward...

8년 초과 전

문제를 풀었습니다


Produce a cosine wave
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/cosine-eqn.png>>

8년 초과 전

문제를 풀었습니다


Connect blocks in a model
Connect the blocks in the model to produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/connect-blocks...

8년 초과 전

답변 있음
Batch runs- Matlab busy
If you call the batch file with "&", the job will be launched in a different shell and it will free matlab prompt immediately. ...

8년 초과 전 | 0

| 수락됨

답변 있음
Data import from excel
You could read the entire spreadsheet as cells, like this - >> [~,~,rawData] = xlsread('mySpreadSheet.xls');

8년 초과 전 | 1

답변 있음
Modify the following program in order to get rid of the break statement without affecting the behavior of the program
Hi Taylie, I am not sure why you want the 'break' to be removed. However, the following code works - but NOT an elegant way o...

거의 9년 전 | 0

| 수락됨

답변 있음
Code of Exponential Discontinuous Function
Does this give the desired plot? Dd = 50; Td = 3600; A1 = 74.6; alpha1 = 2.43*(10^(-3)); A2 = 2.49; alpha2 =...

거의 9년 전 | 0

답변 있음
Create a Message Box with a condition
x = 5:25; % Input Vector limit = 10; if ~isempty(find(x<limit,1)) msgbox('Fault'); else % Do Something Else...

거의 9년 전 | 0

답변 있음
Having issues with understanding the formatting of an error message.
Hey Justin, [] is used for horizontal concatenation of arrays. Texts inside ' ' are treated as character arrays and the numb...

거의 9년 전 | 0

답변 있음
i wanted to plot histogram for following
% Need to convert the input as a cell-array >> status = {'dosing', 'dosing', 'dosing', 'initializing',... '...

거의 9년 전 | 0

| 수락됨

답변 있음
Simple Array Calculation Help
>> inputArray = [S R R R S S S R S R S S R R R R R S S S S S S R S S S R R S ]; >> result = (nonzeros((diff([0 (find(inputA...

거의 9년 전 | 0

답변 있음
Error when function changes cell array size
You ought to be using curly brackets for indexing here. function args = updateCell(args, string, value) if isempty(...

거의 9년 전 | 0

답변 있음
Converting function file to Anonomys function.
fH = str2func('lorenz'); y = feval(fH,t,x,sigma,rho,beta);

거의 9년 전 | 0

답변 있음
How to access workspace variables one by one using m-script
You can get all the workspace variables like this: >> varList = evalin('base', 'who'); Then check individual parameters:...

거의 9년 전 | 0

| 수락됨

답변 있음
flag an error message when a scalar is complex
if ~isreal(num) error('This is a complex number.') end

거의 9년 전 | 0

| 수락됨

답변 있음
Problem in nested function
Looks like, you haven't closed all of your function definition with an 'end'. function [ resobj ] = plot4Paper(data_choice...

거의 9년 전 | 0

| 수락됨

답변 있음
Set Data Type of Inport Block
You can double click on the block and change the following values: <</matlabcentral/answers/uploaded_files/31765/Inport.PNG...

거의 9년 전 | 0

답변 있음
Need help on my for loop
Isn't there a mix-up between 'i' and 'k' index? Also, you could use 'hold on' before starting the loop and avoid the conditio...

거의 9년 전 | 0

답변 있음
State space without using the control toolbox - Error using + Matrix dimensions must agree.
In this line, x(:,k) = x(:,k-1) + dt*(A*x(k-1) + B*u(k-1)); % Error The term A*x(k-1) would give you a 2x2 matrix. You ...

거의 9년 전 | 0

답변 있음
How can I select a .m file through browser push button option in GUI and add/save that file in my current Matlab working directory ? Any guidance is appreciated.TIA
[file,path] = uigetfile('*.m','Choose file to save'); copyfile([path file], pwd)

거의 9년 전 | 0

| 수락됨

답변 있음
how to add elements in matrix
a = [2 6; 5 6]; result = sum(a');

거의 9년 전 | 1

답변 있음
Connect two blocks in a subsytem
Hi Nedra, I couldn't load the image you have attached. You could give this a try: add_line('Mtest/Subsystem', 'Logical O...

거의 9년 전 | 0

답변 있음
Need help to create matlab script to convert currency
Here is function for it : you can easily convert to a script if you want. function currencyTable = convertCurrency(toUsd, t...

거의 9년 전 | 0

답변 있음
how to find differences in two simulink configuration settings using m-script
You can return a variable if you run the function 'active_config' after you have saved it as mentioned in the question. >> ...

거의 9년 전 | 0

| 수락됨

더 보기