0
votes
2answers
25 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
37 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
24 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
35 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
38 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
39 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
31 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 ...
-1
votes
0answers
28 views

fortran to matlab, how make subroutine argument's fortran in matlab

In the fortran code, I make subroutine VECT(N1,N2,N3,NOPN). N1, N2, N3, NOPN is called from other subroutine, the value is calculated using VECT subroutine. The input data(N1,N2,N3,NOPN) is depending ...
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
59 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
64 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
24 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
31 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?
-2
votes
0answers
35 views

Could someone help me with this function plot? [closed]

I have the math relations between Pc, N and CW, as shown in Fig. 1. Now I want to set Pc's value as 0.05, and plot the function of N and CW. (the first equation in Fig. 1 changed to 0.05=1-Pt-Pi, and ...
0
votes
1answer
40 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
37 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
35 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
41 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
17 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
31 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
54 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
60 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 ...
0
votes
2answers
54 views

Converting a matrix in a text file to a grayscale image

So I'm a bit confused about something. I created a function in C to calculate some values and store them in a matrix file. This matrix file opens in notepad and contains rows and columns of float ...
3
votes
1answer
57 views

Matlab error : ??? Subscript indices must either be real positive integers or logicals

I've a problem with a function that I've written by myself. I've not found in any question how to solve it by myself so I post it here hoping that someone's going to see what I didn't see... (It's my ...
0
votes
2answers
36 views

Changing values in matrix in matlab via a function call

I have a matrix full of zeros. I would then like to change one 0 at a time to the value one. It has to be me deciding which element I would like to change. I have tried the following: classdef ...
1
vote
2answers
106 views

How to installed “not found” function on Matlab?

I am using Matlab R2010a on Windows 7 64 bit machine. When I was using imfindcircles function, I got some error. >> [centers, radii] = imfindcircles(image,[100 400],'ObjectPolarity','dark') ...
0
votes
1answer
40 views

Storing data in matrix format in simulink

Is it possible to store data in a table or matrix format during the simulation? I have created a enabled subsystem inside which is a embedded function block. Whenever the subsystem gets enabled( on ...
0
votes
0answers
107 views

Matlab Translation “circshift” function [closed]

Hi I have a part to do in a coursework and i am having difficulty understanding it can someone please just point me in the right direction? What i have done so far is seperate an image into three ...
-1
votes
1answer
27 views

Error in Matlab, calling a function

The errors are: Error in getvalues (line 4) faceNoNoise = wiener2(x, [5 5]); Output argument "mouthTall" (and maybe others) not assigned during call to "C:\Users\Trent\face\getvalues.m>getvalues". ...
0
votes
1answer
51 views

Find the index of numerically closest value [duplicate]

Say I have 2 matrices in matlab : A = [1 4 6 9 11 13 15 18 21] B = [2 10 19] Is there a function I can use so that, for every element in B, I am able to find the index of the closest value to ...
0
votes
1answer
83 views

MATLAB GUI Programming with ODE

I am new to programming and I have to create a matlab gui code with ordinary differential equations (ODE) then graph said equation. The problem I am having is the format where a function for the ode ...
0
votes
1answer
56 views

Function error in MATLAB

I'm pretty new to MATLAB and I have the following code: a=500; PI=3.14159265; radconvert=PI/180; degconvert=180/PI; % values at t=9, t=10 and t=11 respectively alpha=[54.80 54.06 53.34]; beta=[65.59 ...
0
votes
0answers
71 views

Matlab - 3 parameters model fitting to experimental data

I collected some experimental data which gave me two vector: hits and false alarm. What I need to do now is to use matlab to fit a specific model (see the model details below) to this data and see ...
1
vote
1answer
29 views

Matlab different function over different intervals

I would like the function y to be zero if temp is less than 0.5 and exp(x) otherwise. However what i tried below just sets all of y to zero. Any suggestions? x = 0:.01:2; tmp = x.^2; if tmp<0.5 ...
1
vote
2answers
62 views

Mathematica Table function to Matlab

I need to convert this to Matlab code, and am struggling without the "table" function. Table[{i,1000,ability,savingsrate,0,RandomInteger[{15,30}],1,0},{i,nrhhs}]; So basically, these values are all ...
5
votes
3answers
86 views

Distinguish between scripts and functions programmatically

Given a file name, how can I programmatically distinguish between scripts and functions in MATLAB? If I attempt to pass an argument to a script, I get Attempt to execute SCRIPT somescript as a ...
0
votes
2answers
81 views

Matlab: how to write a vector of a few points as a continuous function?

I have two vectors: x = [0; 1; 2] y = [2.0000; 0; -14.7781] If I will plot x and y I will see three points on the xy-plane. But I want to connect those three points and get them as a continuous ...
1
vote
1answer
21 views

Symbolic function input non-symbolic parameters

I need to define a function that returns a symbolic matrix (sym). It takes 4 input parameters- 2 symbolic matrices, and 2 integers. How do I do that? This is what I was trying to do- %my function ...
0
votes
1answer
167 views

How can I convert cartesian coordinates to polar coordinates using function

I'm trying to create a function in MATLAB that takes a cartesian coordinate and converts it to polar. function [homework5] = Cartesian(X,Y) M = size(X,1) for N=1:M if X,Y; r=sqrt(X^2+Y^2) ...
0
votes
2answers
58 views

How to use the output of matlab function in another function ?

I'm working on Iris recognition system for my degree project (put in mind i have no background in Matlab and i had no courses or anything in it , but i had to use it to implement my project ><) . ...
2
votes
2answers
53 views

Matlab - Invoking a function handle with generic parameter list

I'm playing around with numerical integration methods and would like to have a function myIntegrator(f,fParams) In which I'll implement a numerical integration. As f might require any number of ...
0
votes
2answers
37 views

Matlab: how to work with different outputs of function

I've got the function function [imag2] = sumIntegral(x,w,a,b,c,p) imag2 = zeros(p-1,p); for k = 1:p-1 f = @(t)(1:p-1==k)*Integrand[1](t,x,w,a,b,c); imag2(k,:) = quadv(f,x(k),x(k+1)); end ...
0
votes
1answer
27 views

cdsbootstrap matlab function error

I am very very new to matlab, actually I only just got the program to run one code. A good friend of mine wrote a code for me however it doesn't seem to work, I have provided the link to the code and ...
2
votes
1answer
74 views

Matlab getting results from parallel functions slow

I need to execute two Matlab functions in parallel. The problem is that getting results from them is much slower than execution. First method: spmd; if labindex==1, K=MatricaK(NP, NE, r, Kxx, N, ...
1
vote
2answers
34 views

matlab function to python function conversion

I have a matlab function function [indx, indy] = coord2index(hres, vres, hdiv, vdiv, x, y) indx = hdiv + x + 1; indy = -1*y + vdiv; How can I convert it to python function.
2
votes
1answer
39 views

Matlab: How to close program legaly?

I have a running script with many graphical handles that I update here and there in the code. My aim is that when I close the program brutaly (with X button or Ctrl C) to close it correctly. I've ...
2
votes
1answer
62 views

Matlab command or tool exist that would create a tree or maps all the file and functions that how they interact with each other

We have a source code of Matlab Software programmed by an contractor consultant long time ago. Now We try to understand the Matlab code that's how he programmed it. It has around 100 functions and ...
1
vote
2answers
41 views

Is it possible to instrument matlab functions to automatically compare values of local variables across functions?

This is related to How to retrieve local variables?, but broader in scope. The scenario looks like this. Suppose I have two functions function [OutA OutB OutC] = F1 (x,y,z) local1 = x + y - z ...
1
vote
1answer
105 views

Matlab timer undefined function or variable

I have a question about matlab timer object. I have a button in my gui that creates a timer and every period of 0.1 i want to call my function. function playBtn_Callback(hObject, eventdata, handles) ...
2
votes
2answers
46 views

Can MATLAB apply a function to an array of objects

I have an array of objects, all of the same class. Is it possible to apply a function (defined in the methods section in the class) to all the objects in the array at once? for example, the class ...

1 2 3 4 5 7