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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 0

| aceptada

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

más de 9 años hace | 0

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

más de 9 años hace | 1

| aceptada

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 0

Respondida
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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 1

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 0

| aceptada

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

más de 9 años hace | 0

| aceptada

Resuelto


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

más de 9 años hace

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 1

| aceptada

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

más de 9 años hace | 1

| aceptada

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 0

| aceptada

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

más de 9 años hace | 0

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

más de 9 años hace | 1

Cargar más