Tagged Questions
0
votes
1answer
18 views
Call Back Function for Popup menu in Matlab
I have generated a popup menu without using GUIDE by using following code which works well:
figure;
row=4;
String =sprintf('Video%d#', 1:row);
String(end) = [];
CString=regexp(String , '#' , ...
-1
votes
2answers
30 views
Basic Matlab - how to “create” a variant
I need to implement lagrange iterpulation in matlab.
I (think I've) understood how it works. I don't get how to implement the x.
lets say i want to calc for these point: (0,1) (1,1) (2,4)
So I need ...
0
votes
1answer
18 views
wrong partitions with matlab's cvpartition
I am having trouble with the cvpartition function of Matlab. I want to perform a 5-fold cross-validation (for classification) with a dataset that has 134 instances from class 1 (negative) and 19 ...
0
votes
1answer
28 views
Parameter passing to function handle
I have a function and I want to each time change its input and integrate over a certain interval. For example, I first write an m file:
function y = myfun(x)
y = 1 ./ (x.^3 - 2*x - 5);
Now I ...
0
votes
0answers
34 views
Adding function handles in MATLAB
I am doing a molecular dynamics Finite Element Simulation for crack/impurities in materials.
I tried this simpler code which works on command window :
k = [1,2,3,4,5];
c = [1,2,3,4,5];
F{2} = @(x,y) ...
0
votes
2answers
23 views
using fmincon in matlab
Say i have a function f(X) which i want to minimize with constraints such that some other functions- A(X) = 0 and B(X) = 0 and 0 < C(X) < pi. There are many algorithms to do it, but to make my ...
0
votes
2answers
50 views
where do i put a formula in matlab
I have no matlab or mathematical experience but i would like to do the following :
convert an excel file to a tab delimited file and open this in matlab organized in the following way:
every row is ...
3
votes
1answer
44 views
How to get multiple outputs of a function in a vector?
Say I have a function whose outputs are two reals a and b
[a,b]=function(c)
I'd like to get all the outputs in a vector v.
v=function(c) doesn't do what I want, v is 'a' only.
Of course here I ...
2
votes
3answers
58 views
Matlab Function with Varying parameters
I need help figuring out how to code the following problem. Any help would be greatly appreciated!
Create a function that will take a vector/array input for x (1 by n) and a scalar input for a, and ...
0
votes
2answers
18 views
calling a function in matlab and letting the caller determine the number of output arguments at runtime
Is there a way to generalize the following? (note: nargout_requested may not be known except at runtime)
function outputs = apply_and_gather(f, args, nargout_requested)
switch nargout_requested
...
0
votes
1answer
34 views
Put into executable function in matlab
very good day all,
I am new to matlab, I am not familiar with most of the matlab function guys and wish can get some tips from you..
The problem is I want one of the system function to be executed. ...
0
votes
1answer
29 views
No callbacks in MATLAB GUI?
I am currently programming a GUI to display information for a robotic hand and when I right click any of the components in this GUI I cannot seem to find the Callback function. I have made a few other ...
-1
votes
1answer
25 views
Documenting the hierarchy of functions [closed]
I recently got hired as a developer. Since I am new I don't know how to go about this. So my supervisor want me to define a hierarchy of the code which has already been written by the person who was ...
-2
votes
0answers
34 views
Matlab: Debug “Improper Assignment Error”
I write code about encode ADPCM
Then I run the program use this function, error appear like that:
"Improper assignment with rectangular empty matrix.
Error in ==> adpcmenc at 98
...
4
votes
1answer
54 views
using find() in matlab
Say I have a matrix A of dimension Nx3 where N is the number of rows. A stores coordinates x,y,z. Now say I already have a set of known coordinates B = [x' y' z'] which I wanna look up in A. I wanna ...
0
votes
1answer
56 views
How to make linear transfer function in Simulink?
Basicly I need to make k*(T*s+1) transfer function block in Simulink.
In Matlab it's easy as can be, I just make denominator lower then numerator and everything is fine. But when I'm trying to make ...
0
votes
2answers
49 views
finding maximum distance using MatLab
Say I have a matrix A which is a n*3 matrix listing cartesian coordination of n points. What I am interested in is finding northPole and southPole which are basically two coordinates with maximum ...
0
votes
3answers
41 views
MATLAB: Initialize Variables in a Function
In MATLAB:
In a SCRIPT, I'm able to initialize variables which is displayed as empty variables in the workspace:
mass = [];
speed = [];
velocity = [];
BUT when I place these same initialize ...
0
votes
1answer
33 views
Insert matrix element into a Function input in Matlab
I want to make a function that can take a matrix element as an input. Is this possible?
I have in the main script a matrix like:
A = [0 1 2 3 4 5 6 7 8]
I want to make a function that is like:
...
-1
votes
2answers
50 views
MatLab error: Too many input arguments
I have defined a function like this:
function [phi_D,phi_S,v_S] =libem2(n_D,p_D,n_S,vertpts_S,elemvert_S,alpha_S,beta_S,f_S)
Clearly libem2 takes in 8 arguments. This function is actually a helper ...
1
vote
1answer
30 views
Issue Changing Script to function in MatLab
I am trying to give a/set 'rho_real' to this code and receive P_Mpa as an/set of outputs, however the initial 'rho_real' does not seem to get changed as I run the function.
Any Help is greatly ...
2
votes
2answers
53 views
Function returns vector instead of scalar [closed]
I have defined two anonymous functions like this:
hx = @(x) 0.23.*(x>=a).*(x<5) + ...
2.8020.*exp(-x/2).*(x>=5).*(x<=b);
Hx = @(x) p.*c.*x.*(x>=0).*(x<5) + ...
...
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 ...
2
votes
3answers
47 views
Matlab: passing functions as arguments of a function
The function that I want to build is:
function y = myfunction(data, @f1, @f2, @f3, @f4)
%Fit data using f1,f2,f3,f4 such that data ~ af1+bf2+cf3+df4
end
where data is an array. The user will define ...
0
votes
2answers
52 views
I used while loop and my project become not responding (MATLAB)
I'm beginner in MATLAB programming.
I'm working on statistic data and I have some problem with while looping. Here's the codes :
% --- Executes on button press in b_analisa_data.
function ...
0
votes
1answer
24 views
Matlab: Plot a function with different parameters into
In Matlab I have a function calling a set of parameters. I have 3 sets, and I can call them individually and plot them.. No problems there. But I want to be able to compare them in one single plot. ...
1
vote
2answers
38 views
Memory size of function handle - MATLAB
One of the fields in my structure is a function handle:
strct.handl=@(arg1,arg2)handl(arg1,arg2,par1,par2)
Now, arg1 and arg2 are defined every time I use the handle, but par1 and par2 are stored ...
8
votes
3answers
135 views
Why is the Matlab function “feval” needed?
A function handle can be used to call a function, e.g.
f = @sin;
val = f(1.0);
so why is "feval" ever needed?
val = feval(f, 1.0);
When is it useful?
1
vote
3answers
39 views
Matlab Callback Function Only Sees one Parameter Passed to it
I'm writing my first GUI programmatically in Matlab. I have built the visual aspect of the GUI and I am now in the process of writing the Callback functions. When I write the callback function I need ...
1
vote
3answers
63 views
How to evaluate a function at a point in Matlab?
For example, if I have a function f(x)=x^2, how can I evaluate it at x=2?
I have tried employing the symbolic toolbox and using the following code in the Command Window:
syms x;
f = sym(x^2);
...
0
votes
2answers
32 views
Matlab arrayfun mapping using two arrays?
How would I go about mapping the values of TWO arrays to a function and returning the result as an array?
arr = [1, 2, 3];
arr2 = [1, 4, 5];
val= arrayfun(@(x) func(arr, arr2))
function val = ...
0
votes
2answers
49 views
how to find min and max of float number in matlab
The min and max functions in MATLAB work on only integer values. How can I find the min and max of a double vector?
a = [2.1 3.4 5.6 7.6]
min(a)
returns to me:
Subscript indices must either be ...
1
vote
0answers
33 views
Incorporating Structure Fields into a Function as Inputs (in MATLAB)
I'm using MATLAB (Mapping Toolbox) to create a large number of lines between different countries. Since there are so many lines, I'm trying to do this using object-oriented programming. This is the ...
1
vote
1answer
36 views
Defining axes in matlab
I'm trying to plot f[t], Fourier series evaluated at 23 for some periodic square-wave with x-axis limits of [0,T] and y-axis limits of [-1 1].
I have a figure 1 which is a plot of ...
-2
votes
3answers
47 views
Function deceleration in matlab [closed]
I just want some advice regarding a Matlab function, more to confirm I am doing it correctly.
Here is my code.
function [output] = myfunc( input1, input2);
output = input1 * input2;
Then I call ...
1
vote
1answer
44 views
Optimizing a function with multiple outputs in Matlab
Say I have a function
[f,g,h] = function (x)
In the file function.m in Matlab. How can I find the value x, e.g. using fminunc, which maximizes g? The fminunc documentation only handles the case when ...
0
votes
2answers
32 views
Matlab vector assistance
I am trying to create a column vector in matlab based on two 64x64 double vectors, and iterate through each element in the vector and apply an equation to create a new vector, which will then be ...
0
votes
1answer
39 views
undefiend function or variable
I worte like that; I got an error message, " Undefined function or variable 'MATM'"
'MATM' is function and no probs in other function. How can i do that?
function FUNC
global LNODS COORDI SHAPE ...
2
votes
2answers
81 views
MATLAB: How do I graph multiple functions on the same graph?
How can I graph multiple functions on the same graph/plot/Cartesian plane on MATLAB with domain and range restrictions?
For example I made up the following functions below. How would I graph the ...
1
vote
1answer
76 views
How To Change The Parameters Of A Function In Real Time With Matlab
I'm working on a sound modifier that would:
1) Get inputs from a user (X,Y)
2) Apply effects to a predetermined sound file using the X and Y
The code is a bit hard to follow so I'll not post it ...
0
votes
1answer
33 views
How do I input an image name into a function in MATLAB?
Basically, what I'm trying to do is run the following function directly from the command window in MATLAB. My function itself is:
function reconstruct_2(im_input,d,c,k)
rgbpic = imread(im_input);
...
-4
votes
1answer
33 views
How to plot a several functions in matlab for n converges to infinity? [closed]
Can anybody help me and tell me how to plot these functions in matlab:
n!*log(n)
sqr(n)
(n+1)!
log^2(n)
n
log(n^n)
Where n is a natural number and converges to infinity?
0
votes
1answer
74 views
How to call an m file from another m file in MATLAB and retrieve an output?
I know this is a simple question, but for some reason I can't find a straight answer that works no matter where I look.
Basically, I have 4 values that were found in one m file, and I want to run ...
1
vote
1answer
58 views
Saving return values of function returning multiple variables in Matlab
I have never used matlab before so excuse this very basic question.
Basically I have a function that returns multiple variables, defined like so:
function [a, b, c]=somefunction(x, y, z)
I know I ...
3
votes
1answer
39 views
how to control return variable in matlab
i want to clarify how to control returning of variables from function in matlab,for exmaple let us consider this code
function [x y z]=percentage(a)
n=length(a);
maximum=0;
minimum=0;
...
0
votes
0answers
44 views
Filling a matrix, the same way as “fill.m” fills a figure
I'd be glad if someone could tell how to fill a matrix the same way as the function "fill.m" fills a figure.
Is there an already existing function in Matlab which does this already?
An alternative ...
0
votes
1answer
20 views
MATLAB function open works in workspace, but not in function
I am trying to create a video file with MATLAB. Here is my function:
function [vidObj] = createVideo(frames, frameRate, filename)
%Create video object
num_frames = size(frames,2);
vidObj = ...
0
votes
1answer
33 views
Matlab - Access the output a function inside another function
I am trying to access the output of a function from another function. I have the following fucntion:
function f = doSomething
f = 5+6;
In another function I'm calling doSomething as follows:
...
0
votes
1answer
60 views
How to access inbuilt functions?
As what should I be typing in the Command Window to get the function file to open?
Usually I get a link to them when debugging and an error occurs, but what command can be used to access them ...
-1
votes
2answers
65 views
How can I do multithreading in my own function? [closed]
I am having Intel Core i3 - 2350M Processor 2.30 GHz Processor, 2 GB RAM, 320 GB Hard Drive and MATLAB R2011a. I want to do multi threading in my own function explicitly. So that I can execute one ...

