Text file used by MATLAB, an application used for mathematical computations. It can store a script, class, or an individual function in the MATLAB language. Use this tag for questions specifically related to coding of m-files or to m-files applications in MATLAB.

learn more… | top users | synonyms

0
votes
2answers
42 views

Functions and function name errors

I'm trying to write a simple function, e.g: function [x y] = functionname (a, b, c, d, e) so I create an m-file called function-name.m, with all the variables specified. However, the m-file from ...
1
vote
1answer
40 views

Can only see comments for built in MATLAB files

So, this has never happened before, but for some reason, I am unable to view a default MATLAB file. That is, a *.m file that comes with your MATLAB program, (for example 'fft', 'transpose', 'angle', ...
0
votes
1answer
65 views

Matlab Cant see Variables on Workspace

I have a problem with my Workspace. I am trying to see my GUI variables on workspace, but I can't! For example I run a .m file gui and open interface. For example I open any image and making image ...
0
votes
3answers
60 views

Why do i get this error - MATLAB

I have the image and the vector a = imread('Lena.tiff'); v = [0,2,5,8,10,12,15,20,25]; and this M-file function y = Funks(I, gama, c) [m n] = size(I); for i=1:m for j=1:n J(i, j) = ...
0
votes
1answer
109 views

Word search algorithm using an m.file

I have already implemented my algorithm using cells of multiple strings on Matlab, but I can't seem to do it through reading a file. On Matlab, I create cells of strings for each line, let's call ...
1
vote
2answers
284 views

control simulink from M-file

I am trying to control a simulink from a M-file. What I want to do in the M-file is give the simulink model some input, run the simulink model, change one input value at 0.6 seconds, continue running ...
1
vote
0answers
282 views

serial communication in MATLAB m-file

I am trying to do serial communication with my MATLAB m-file When I write the same program in command window i mean when it get execute step by step I am getting the output from MATLAB. But when I ...
1
vote
1answer
148 views

How can I paste my m-file into simulink?

I created a program and want to use it in simulink. How can I paste my m-file into simulink? The program extrapolates input signal. Input: N-vector (need to collect N values ​​of input signal) ...
0
votes
1answer
488 views

run M-file on multiple images and write output images

I have written a M-file. I'd like to run this M-file on multiple images and then write output .tif images by naming separately. Is there easy way to do this? Thank all
1
vote
1answer
161 views

How does MATLAB compile a m file? [closed]

I am writing a MATLAB m file which looks like this: for k = 1:100 func_a(); func_b(); func_c(); end where func_a, func_b, and func_c are three different m files each has about 500 lines. Now, I ...
-1
votes
1answer
357 views

Get parameter values from .m-file into GUI (Matlab)

To keep it short. I'm developing a software tool where I would like to import parameters into GUI from .m-files, but I can't find how to import the parameters. I'm using iugetfile to 'reach it' but ...
0
votes
1answer
185 views

how to write a function which calls a simulink file in it

i just wrote a m-file with some defined input in which a simulink file is called. it worked correctly but when I'm going to define a function based on the same m-file ( so i can give multiple inputs ...
1
vote
1answer
876 views

Run m-files Inside Java

I have a matlab function written in an m-file. (it's not written by me and seems a complex algorithm) Now I want to use it with a java application. I searched in internet and learned how to run matlab ...
1
vote
1answer
297 views

Execute m file at startup

I have a MATLAB m file, which I now manually execute after every startup of MATLAB. The file is located in a directory defined by an environmental variable. For example, if the file is start.m in ...
3
votes
1answer
215 views

“??? Undefined function or method” in Matlab Engine command window

I am working with Visual Studio on C++ code, and I send some variables to MATLAB engine. So far there is no problem. Imagine I have the MATLAB command window opened and these variables: » whos Name ...
0
votes
2answers
222 views

How do I draw graphs in a tree layout in matlab?

I'm trying to draw graphs (trees), and I looking for a algorithms to layout the graph. Is there a library to do that in matlab? Otherwise, can somebody point to a good resource for that, preferably ...
0
votes
1answer
468 views

Matlab GUI gives error, but m file okaz

I`m absolutely new in Matlab, so I think it is a dumb question, but I would be really grateful for any help. I had made a GUI with some slider. When I compile the m file everything works fine, there ...
0
votes
1answer
157 views

Storing data to seperate arrays after specific strings appear in text file

I would like to have an m-file that will be able read a text file and store each set of data into separate arrays. A set of data is a range of hex values appeared between specific strings. The ...
0
votes
1answer
73 views

UIButton is not Available in app.m File

I created a UIButton in my app.xib file. I connected it to "IBOutlet id button;" within the app.h file. For some reason when I start typing in the app.m file "butt..." it doesn't find the the id ...
1
vote
4answers
830 views

Compile a matlab m-file into a usable C-function

Hey there, is there a way to compile (or better to say: 'translate') a matlab m-function into a C-function so that I can use it in the CUDA kernel of my mex file? thanks a lot!
3
votes
1answer
410 views

How do I output multiple calculations with an m file as matrices?

I'm writing an m file where and iteration of answers are calculated. I want to save each of these iterations in a matrix. How do I go about doing this? j = 0; for j < n; %n is a user input ...
3
votes
4answers
11k views

How do I correctly use Recursion in MATLAB?

I have a simple m file that I have created as a recursive function: function[velocity] = terminal(m,c,t,vi) %inputs: % m = mass % c = coeffcient of drag % t = time % vi = initial velocity if t==18, ...
0
votes
1answer
922 views

MATLAB: How to get variables from GUI m-file into Simulink Model

Hey guys, I dont know if I'm wording my problem right but I have created a GUI, an m-file and a simulink. Initially I had the variables going from the m-file into the Simulink, but now I want the user ...
0
votes
2answers
1k views

how to convert from matlab file to dll

I am using matlab 2009 -- I have .m file. I want to convert it to dll file so i can use it in c++. how can I do that, someone told me to use the matlab compiler and is it free?
48
votes
5answers
21k views

Is it possible to define more than one function per file in MATLAB?

When I was studying for my undergraduate degree in EE, MATLAB required each function to be defined in its own file, even if it was a one-liner. I'm studying for a graduate degree now, and I have to ...
1
vote
2answers
16k views

In MATLAB, How I can run multiple files .m (M-file) automatically?

In MATLAB, how I can run 20 files .m (M-file) automatically?
2
votes
2answers
3k views

MATLAB: Calling .m files in a loop

How do I call 3 MATLAB .m files in a loop and display the results in sequence?