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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

Beantwortet
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?

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

| akzeptiert

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 1

| akzeptiert

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

Beantwortet
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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 1

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

| akzeptiert

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

etwa 9 Jahre vor | 0

| akzeptiert

Gelöst


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

etwa 9 Jahre vor

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

etwa 9 Jahre vor | 0

Beantwortet
What kind of block is it?
Its an integrator block with initial condition set to 'External'

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 1

| akzeptiert

Beantwortet
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') ...

etwa 9 Jahre vor | 1

| akzeptiert

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 0

| akzeptiert

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

etwa 9 Jahre vor | 0

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

etwa 9 Jahre vor | 1

Mehr laden