Matlab Call Subroutine Function
This is my notes about how Matlab call subroutine. We could make them all static methods on a utility class. The functions will be globally referenceable by name, but you only need to manage one M-file. Please look at my sample code : classdef test_toto methods (Static) function [a1] = test1_toto a1 = ‘test1′; end [...]
Matlab running external applications
Matlab running external applications When create a program with Matlab, in some condition we need Matlab running external applications. You can implement this method in Linux or Windows Operating System. The method Matlab running external applications is simple. Example, we want to call gedit/notepad application. So, we can use type this text in command line [...]
Matlab fix Function to C
I get function fix in Matlab. fix(X) rounds the elements of X to the nearest integers towards zero. For example if we have data with value : X = [-1.9, -0.2, 3.4, 5.6, 7.0] When we use fix function with this data, so we get output : Y = [1.0000 0 3.0000 5.0000 7.0000] I [...]

