Answered
Accepting and saving multiple size matrix input
I have a function 'Func' function out = Func(varargin) out = 0; for num = 1 : nargin out = out + sum(varargin...

14 years ago | 1

| accepted

Answered
adding a title to a figure - by a loop
Something like this?? clear all; clc; X = {'asd','asdf','sfdf','sd'}; for i = 1 : length(X) figure('name',...

14 years ago | 2

| accepted

Answered
How to input file but file depend to extension
I have 5 MAT-files and 1 RAR-files in the directory 'Database'. Then I want to load MAT-files only from the directory. This is t...

14 years ago | 2

| accepted

Answered
Calculating distances between coordinates from a matrix
Pop = [1 1 2; 2 3 3; 3 5 1; 4 7 6; 5 8 2]; [m n] = size(Pop); n = m; Dist = z...

14 years ago | 2

| accepted