답변 있음
Problem to pause and resume Simulink simulation.
1. Any chance your script changes bdroot? 2. Also, do you remember to update the value of the constant block after the asser...

거의 9년 전 | 0

답변 있음
x ∈ [−2, −1] ∪ [1,2], How to write this range of a function in matlab
function out = fun1(x) if (x >-1 && x<1) out = x*x; elseif ((x =>-2 && x<=-1) || (x >=1 && x<=2)) out = cos(2*...

거의 9년 전 | 0

답변 있음
I am trying to solve several ODEs and I keep getting the following error: Attempted to access c(2); index out of bounds because numel(c)=1
c should be an array of atleast 6 elements. What do you pass as *c* to the function?

거의 9년 전 | 0

답변 있음
I need help in plotting the data but I keep getting an error
What is the length of t and position?? Both must be of same length if you want to plot them..

거의 9년 전 | 0

| 수락됨

답변 있음
Is there another name used for the toolbox Signal Blocks
"DSP System Toolbox" https://www.mathworks.com/matlabcentral/answers/196989-i-can-not-find-a-related-license-on-your-webpage-...

거의 9년 전 | 0

답변 있음
How would you start designing a low pass IIR filter? How long would it take you? Thank you!
If you know the transfer function of the filter/filter coefficients, you can start with the Discrete Filter block in Simulink. ...

거의 9년 전 | 1

| 수락됨

답변 있음
help for fprintf command !!!!!!!
You are opening the file in write mode inside a for loop. So everytime the file gets overwritten. Open the file (fileID = fop...

거의 9년 전 | 0

답변 있음
Populate one pop up menu on the basis of selection in another pop up menu.
In call back of popupmenu1 you should write this.. a=get(handles.popupmenu1,'value'); switch a case 1 tex= ...

거의 9년 전 | 0

답변 있음
i have one function file and m file now i give values of x(1) and x(2) in function file which update in m fille and run
Solution 1: a) make lflow1 as a function and pass 'sys' to it. fitfund1 .m function y=fitfund1(x) %for this we give t...

거의 9년 전 | 0

답변 있음
Matching 2 excel files to get an output from another cell
use xlsread to read the data from the two xls files. Run a loop along the rows. Compare and extract data. help xlsread

거의 9년 전 | 0

답변 있음
i have one function file and m file now i give values of x(1) and x(2) in function file which update in m fille and run
1. dont use *system* in our code. system is a keyword in MATLAB intended to do something else. 2. and *fitfun* is a function....

거의 9년 전 | 0

답변 있음
Why does my code does not work in the if loop
Once you set T = 0 inside your if, you lose all the array you created by doing T=T0-beta*t; so you should have done ...

거의 9년 전 | 1

답변 있음
How do i resolve the error in this code
What are you trying to achieve in this code? What your code does is to set Cost(0), Cost (1)...Cost(2005) to 0; And Cost(200...

거의 9년 전 | 0

답변 있음
How to disable "select your country" pop up on mathworks site?
AS you have mentioned, the location/language preferences are stored in cache/cookies only. The only solution is to not to delete...

거의 9년 전 | 0

답변 있음
How to use out block value in matlab
1. You can directly add a scope on the line joining the block. 2. You can log the data flowing through the line. At the end...

거의 9년 전 | 0

| 수락됨

답변 있음
Variable Gain Value Dependent on input in Simulink.
no. This is not what i mean. First if you have only two possible gains, then best way to do it is as below <</matlabcentra...

거의 9년 전 | 0

| 수락됨

문제를 풀었습니다


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

거의 9년 전

답변 있음
[Help] Matlab executes the program very slowly (Slow execution)
Please try profiler <https://www.mathworks.com/help/matlab/ref/profile.html>

거의 9년 전 | 0

답변 있음
What kind of block is it?
Its an integrator block with initial condition set to 'External'

거의 9년 전 | 0

답변 있음
How do I convert a cell array of structures into a numeric array?
temp = cell2mat(x); temp = {temp.Text} y = cellfun(@str2num, temp)

거의 9년 전 | 1

| 수락됨

답변 있음
What kind of block is it?
It looks like a simple integrator block. If this does not help, select the block and type get_param(gcb, 'BlockType') ...

거의 9년 전 | 1

| 수락됨

답변 있음
Variable Gain Value Dependent on input in Simulink.
what is "dependant on the input into the block"? If you want to change the gain from workspace, you can do so by specifying a wo...

거의 9년 전 | 0

답변 있음
Multiple variables system representation
Try the new MATLAB graph object? http://blogs.mathworks.com/cleve/2017/03/20/morse-code-binary-trees-and-graphs/

거의 9년 전 | 0

답변 있음
Redirecting console messages to GUI
1. try disp 2. Set 'enable' property of the button to 'inactive' during creation and set it to 'on' after system command. ...

거의 9년 전 | 0

답변 있음
Appearance of small matrix in the workspace and structs
>> a = {[4,2;3,1]} a = [2x2 double] You are asking this?

거의 9년 전 | 0

답변 있음
Split string of hex shorts into cell values
One suggestion would be, since the width of each value is fixed, you can do something like this.. string = '007B01C8BD9...

거의 9년 전 | 0

답변 있음
How to replace 'genvarname' with 'matlab.lang.makeValidName'?
temp = 'abc' v = matlab.lang.makeValidName(temp) eval([v,'=5'])

거의 9년 전 | 0

| 수락됨

답변 있음
How to call a function within another function in MATLAB?
This one? https://www.mathworks.com/help/matlab/matlab_prog/nested-functions.html

거의 9년 전 | 0

답변 있음
Changeing the x Values when you plot the values
Set axis limits and aspect ratios http://in.mathworks.com/help/matlab/ref/axis.html

거의 9년 전 | 1

더 보기