Answered
run a function with 2 outputs multiple times
for iLoop=1:100 [t,X] = SISep(adj, beta, gamma, nmax, I0); tSim(iLoop)=t; XSim(iLoop)=X; end

8 years ago | 1

| accepted

Answered
How to add a timestamp to array in simulink?
1. If you want to run the model as a regular user, you can set the cache folder to some folde other than C:\Windows... Example: ...

8 years ago | 0

| accepted

Answered
Change font value of uitable headings in GUI
You should use HTML tags. ColumnNames = { .... '<html><center /><font face="verdana" size=3>Column Heading 1</font><...

8 years ago | 0

| accepted

Answered
How to be able to control reading text in matlab
fid = fopen('letterabc.txt'); tline = fgetl(fid); while ischar(tline) YesOrNo = input('continue Reading [y/n]') if...

8 years ago | 0

Answered
Error when I run a .bat file
Is there any reason why you dont use !abc.bat or dos('abc.bat')

8 years ago | 0

Answered
How to control reading text character by character
fid = fopen('letterabc.txt'); tline = fgetl(fid); while ischar(tline) YesOrNo = input('continue Reading [y/n]') ...

8 years ago | 0

| accepted

Answered
Is it possible to get block handles instead of port handles in get_param?
Port handles are the handles of the ports(the small > at the border of the subsystem). These are NOT the outports' block handles...

8 years ago | 0

Answered
How can i write from txt files to any array
use textscan function http://in.mathworks.com/help/matlab/ref/textscan.html

8 years ago | 0

| accepted

Answered
Is there a way to count the number of signal paths from each inport to each outport?
You have to start from each outport, and then find the preceeding block. You can use 'PortHandles', or 'PortConnectivity' itera...

8 years ago | 0

| accepted

Answered
Access Summary report data of Simulink models
All model advisor apis are described here. https://in.mathworks.com/help/simulink/slref/simulink.modeladvisor.html

8 years ago | 0

| accepted

Answered
Display information about the model at each level
>>saveas(get_param('FigX_model','Handle'),'FigX_model.pdf');

8 years ago | 1

| accepted

Answered
Convert Simulink model to TargetLink model
tl_prepare_system

8 years ago | 0

| accepted

Answered
How do I remove the first 3 lines from all of the .txt files in a directory?
You can start here ... https://in.mathworks.com/matlabcentral/fileexchange/42877-find-and-replace-in-files

8 years ago | 0

Answered
How can the numbers appears on an excel sheet correctly and not as wierd letters?
1. Why do you write data twice? xlswrite('HISTOGRAM',data,'histogram'); xlswrite('HISTOGRAM',header2,'histogram'); xl...

8 years ago | 0

Answered
How to input images into excel cells?
You should use activeX (https://in.mathworks.com/help/matlab/matlab_external/using-a-matlab-application-as-an-automation-client....

8 years ago | 2

Answered
Creating Array in Simulink
The 1-D array will be put in a constant block. ANd using an index selector and timer logic, you can select each element in the c...

8 years ago | 0

| accepted

Answered
How do I change the block parameters in a Simulink model through matlab script?
two ways: 1. Create workspace variables in the m script. Refer the variables in the constant blocks instead of direct values. E...

8 years ago | 0

| accepted

Answered
Is it possible for the iterations of a loop to get faster as the loop progresses?
I think it depends on a lot of things (cache, compiled code, memory allocation etc). Due to one or more of the above reasons, y...

8 years ago | 0

Answered
Calling the results from two scripts in one third script
script3.m script1;%Running script1.m a = res;%storing value of res in a script2;%Running script2.m b = res;%stor...

8 years ago | 2

| accepted

Answered
Is there a faster way to load large structures?
Try partial load using matfile.. <https://in.mathworks.com/help/matlab/import_export/load-parts-of-variables-from-mat-files.ht...

8 years ago | 0

Answered
Unable to create text file for output
Are you closing the file (by calling the function with type = -1)?

8 years ago | 0

Answered
How should I organize my MATLAB files?
As you have said, its all a personal preference. For my masters project, I used the following structure. It worked well. pr...

8 years ago | 3

Answered
How to convert virtual bus to non virtual bus automatically?
You have to set the following properties in Simulink to the block that creates the bus (Bus creator) se...

8 years ago | 0

Answered
How can i get this function to work with this spreadsheet
The xls file has values for Xc, Yc and Zc. You have to read it (using xlsread) and call your function. The other argument (R) yo...

8 years ago | 1

| accepted

Answered
Suppose I have a file folder in which I am adding files to it at specific interval, say per hour. Is there a way to automatically update a matlab program everytime I add files to the folder? Thank you.
The m script should monitor the folder continuously using directory functions like dir or what Whenever there is...

8 years ago | 0

Answered
How Can I randomly select 20% of my array elements AND save their indices (row,column) ?
A = [230,30,40,40,80;40 40 30 80 230;40 40 40 230 80]; n=numel(A); B=reshape(A, 1, n); %1-D array p = randperm(n);%r...

8 years ago | 0

Answered
Simulation time in simulink
https://in.mathworks.com/matlabcentral/answers/83028-simulation-time-unit-in-simulink

8 years ago | 0

| accepted

Answered
How to create a subsystem programmatically using a specified set of blocks ?
Which version of MATLAB you are using? Because in newer versions Simulink.BlockDiagram.createSubsystem is available as Simulink....

8 years ago | 1

Answered
Sending an e-mail through MATLAB using Microsoft Outlook
If the "result of a function" is a number, you should convert it to a string and pass it (using num2str function)

8 years ago | 0

Answered
Why is my script so slow? Eratosthenes
To the uninformed eyes, there seems to be an unnecessary for loop in the slower code that runs E*E times.

8 years ago | 0

Load more