-2
votes
1answer
38 views

Input-Looping Matrix Dimensions Must Agree

I've got this error: Error using - Matrix dimensions must agree. Error in DistMatrix3 (line 23) d=sqrt((I-L').^2+(J-M').^2+(K-N').^2); Error in coba (line 20) ...
0
votes
1answer
38 views

insert array using graphical interface in matlab

I want to insert an array using a graphical interface, but I don't understand why I get these errors: Error using waitfor Undefined function or variable 'A'. Error using waitfor Error while ...
2
votes
3answers
43 views

Dynamically creating and naming an array

Consider the following code snippet for i = 1:100 Yi= x(i:i + 3); % i in Yi is not an index but subscript, % x is some array having sufficient values i = i + 3 end ...
0
votes
2answers
26 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 = ...
2
votes
0answers
31 views

Setting Properties In Object Array From Array

classdef MyObj properties A; end end %% len = 5; objArray = MyObj.empty(len,0); for i=1:len objArray(i) = MyObj(); end dataArray = [1 2 3 4 5]; % How do I set objArray.A to the ...
1
vote
3answers
52 views

Effective picking of surrounded element

If I have sequence 1 0 0 0 1 0 1 0 1 1 1 how to effectively locate zero which has from both sides 1. In this sequence it means zero on position 6 and 8. The ones in bold. 1 0 0 0 1 0 1 0 1 1 1 I ...
0
votes
1answer
17 views

How to reference items in Matlab matrix when declared [duplicate]

I want to extract items from multiple fields of a structure and put them in an array with unique applied. Say the structure has this format: A=repmat( struct('field1',[],'field2',[],'field3',[]) ...
1
vote
2answers
66 views

is there an easy way to find index array zeros in Fortran?

I'm searching for intrinsic fortran functions to help me find the array index with zeros, or other value. I only found minloc function, but I think this is not suitable. Is there an matlab find ...
-2
votes
2answers
37 views

In MATLAB, For Looping with String Array

A similar question has been asked, but still I'm looking for a solution. In MATLAB, I have an array of states s: s = {'Indiana', 'Texas', 'Alabama'} Time is a column vector: [120 30 20 40 50]' ...
0
votes
1answer
24 views

Change one value of column based on value of another column in Matlab

I have two arrays in matlab (small part shown below): A B 2 3 0,1 3,6 0,1 3,6 0,1 3,6 0,1 3,2 0 3,2 0 3,2 0 3,2 0 2,4 0 4,3 ...
1
vote
1answer
28 views

How to segregate string into different column in MATLAB?

How to segregate ddmmyyhhmmss (day, month, year, hour, minute, second) 12 digit number and put in the separate 6 column in MATLAB? I need 7 column now in total. For example, I have following string ...
2
votes
1answer
37 views

Matlab, finding common values in two array

I want to find common values in two arrays(For example if A=[1 2 3 4 5 6] and B=[9 8 7 6 3 1 2] the result is ans=[1 2 3 6]).Is there any method without using loop? Thanks
1
vote
1answer
30 views

MATLAB: Looping Through a Cell Array

In MATLAB, I have a csv file with the data (ignore whitespaces below only for readable): State, Rain, Sunshine, Indiana, 52, 25, Kansas, 45, 22, Georgia 35, 55, Texas 22, 30, ...
2
votes
1answer
43 views

MATLAB: Iterate Through a Loop Array

In MATLAB, I need to create a loop to iterate through the entire string array and plot. In other words, First Iteration: the loop steps to Montana with its value (23,45) and generates plot. Second ...
1
vote
1answer
52 views

Converting 2D cell of 2D matrices (consistent sizes) into 4D matlab double

Searching around here one finds many questions how one can convert cell arrays of doubles into one big matrix. In my application I have a two dimensional cell array (lets call it celldata of size m ...
0
votes
1answer
45 views

Creating an image array and reading from it in matlab

I wanted to create an array of images and for that i have used the following code: fileFolder = 'C:\Users\Shoiab\Desktop\New folder'; >> filePattern = fullfile(fileFolder, '*.png'); >> ...
0
votes
1answer
27 views

MATLAB Combining Arrays Based on Certain Columns that Match

I have a NetCDF file with the variables day(in julian) lat, lon, and ozone. I have converted that file into a 3D matrix of lon, lat, and day (in that order). I also have a .mat file with Year, Month, ...
3
votes
1answer
23 views

Matlab: Update elements in array by identifier

I have a large array A with ~500.000 rows of the form [ id1 id2 value1 value2 zero zero ] and another, smaller Array B (~20.000 rows) with rows with some of the identifiers from A [ id1 id2 ...
1
vote
1answer
69 views

How to make MATLAB play an array faster?

I'm working on a audio processor, which is supposed to change the pitch and add a vibrato to a song while it is playing. Note that, although the sound isn't live (e.g. from a microphone) the effects ...
0
votes
1answer
28 views

Matlab `image(image)=-1`? [closed]

I'm really new at matlab and I'm trying to understand this piece of code: mask = false(size(image_map)); image_map(mask) = -1; I understand that the first line is to create an array of logical ...
0
votes
2answers
50 views

How to create Matrix from 3 coordinate arrays in Matlab/R?

This is old problem but yet I am not able to fix this issue in my code. I have 3 arrays: x, y, z each are column vectors of size N. x, y are coordinates data and z is the value measured at each point. ...
0
votes
1answer
34 views

Matlab: Get elements of Cell Array from Indices

I have a 1x84 cell array that I get the indices for cross validation: indices = crossvalind('Kfold',length(filenames),k_fold); for i = 1:k_fold test = (indices == i); train = ~test; Given ...
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 ...
0
votes
0answers
37 views

How to calculate conditional sum of a part of vector/array based on a 2nd array/vector - Matlab [closed]

I want to get the conditional sum of part of a vector based on a second vector. For example: A = [143 14 -4 299 -29 83 151 190 178 -61 -109 ] and B = [1 1 -1 1 -1 1 1 1 1 -1 -1 ] then I want to ...
3
votes
2answers
55 views

Assign value to multiple slices in numpy

In Matlab, you can assign a value to multiple slices of the same list: >> a = 1:10 a = 1 2 3 4 5 6 7 8 9 10 >> a([1:3,7:9]) = 10 a = 10 ...
0
votes
2answers
58 views

MATLAB creating of struct-vector

Given some data - for example (in my case) - like the following tabular Name |pos_x|pos_y|pos_z ------------------------ Point1| .1| .1| .2 Point2| 0.0| 0.0| .1 Middle| .1| .2| .1 ...
1
vote
1answer
56 views

vectorize a filter to a subsequence of an array in Matlab

I have a vector,"a", and a filter,"b".Both of those vectors contain only 0 or 1. I would like to transform "a" such that any sequence of 1 only starts when b is at 1. I have illustrated this using a ...
0
votes
0answers
40 views

Differentiating element of an array by element of second array in matlab

I have one problem with Matlab. I googled and searched this site, but I didn't found working solution for me. I have two arrays. First array has automatically generated symbolic variables ...
0
votes
1answer
36 views

Unable to open a file with uigetfile in Matlab

I am building a code that lets the user open some files. reference = warndlg('Choose the files for analysis.'); uiwait(reference); filenames2 = uigetfile('./*.txt','MultiSelect', 'on'); if ...
2
votes
1answer
33 views

Matlab : expandable array, lost data

I have two columns of data. First column is time and second column is a function of time. However some time values are lost, so the function values. I don't know the index of the lost row (the amount ...
2
votes
1answer
24 views

Non-cell array with uigetfile in Matlab

My code has 2 parts. First part is an automatic file opening programmed like this : fichierref = 'H:\MATLAB\Archive_08112012'; files = dir(fullfile(fichierref, '*.txt')); numberOfFiles = ...
3
votes
1answer
54 views

matlab function that removes elements of one array from another

I have two arrays: A=[1 1 2 2 3 3 3]; B=[1 3]; Is there any function that can remove elements of B from A? The result should be C=[1 2 2 3 3]; The order is not important, but if there is more ...
-1
votes
0answers
43 views

How to convert elements of an array to variable in Matlab

I need this for some program in Matlab. I have a symbol array (exp. oz=[p1 p2 p3 ... pn]) and want in next step to change p1, p2,..., pn to variables and give them some values. Example: oz=[p1 p2 p3 ...
-1
votes
1answer
38 views

The `padarray` function in matlab

In matlab, there is a function called padarray. I didn't understand the post value of the function. Can you describe it in terms of an example? Thanks.
5
votes
4answers
59 views

Check if cell array is a subset of a nother in Matlab

I have two cell arrays of strings as follows A={{a,b},{c},{d,e}} B={{a,b},{c,d},{e}} I want to check if A is a subset of B, meaning that each cell in A has a super-cell in B. In the given ...
0
votes
2answers
35 views

splitting array and export values in matlab / octave

I have a large array that the amount of rows will vary and that I would like to split up and export to multiple files. I was thinking of using the reshape command but then realized for this to work ...
0
votes
2answers
44 views

Matlab: Number of observations per year for very large array

I have a large array with daily data from 1926 to 2012. I want to find out how many observations are in each year (it varies from year-to-year). I have a column vector which has the dates in the form ...
2
votes
2answers
63 views

sorting cell array based on column (double not char) values

I have a 3x1 cell array A which includes: 10.2 15.2 7.2 and another 3x1 cell Array B includes: m l s I would like to join these into a new 3x2 cell Array C including: 10.2 m 15.2 l 7.2 ...
1
vote
4answers
33 views

Assign sequential number to integer element in array

Good morning/afternoon~ I have an array like this, A= [12 0 0 0 0 3 0 0 0 66 0 0 0 0 20 0 0 2 0 31 0 0 42 0 32 0 38] the output should be: B= [ 1 0 0 0 0 2 0 0 0 3 0 0 0 0 4 0 0 5 0 6 0 0 7 ...
2
votes
2answers
45 views

Generate 2^N-1 number of matrices from a MXN matrix

I need to generate all possible combinations of a 10X5 matrix. What I need is all 10X1 matrix, 10X2 matrix, 10X3 matrix etc. What' the most efficient way. i can use multiple loops but that would be ...
0
votes
1answer
39 views

Convert data file to char array

I have a file(res.txt) that looks like this: a na na a a a na I need to read this into a matrix and import into workspace. using textscan makes it a cell array. hence, a(2)=n not na . How do I ...
0
votes
1answer
37 views

In Matlab, I need to access values at periodic interval from one array

I have a huge database with readings taken at half an hour interval (no data gaps). I need to modify the data such that it has readings at 3 hour interval. Is it possible to delete 5 rows and skip one ...
0
votes
1answer
64 views

Adding different numbers to each element in array row-by-row

Say I have a 4x2 array as shown below. Basically what I'm trying to do is: 1. Iterate by row 2. Check if conditions 3. Add different random number to each element in that row 4. Generate number again ...
0
votes
2answers
65 views

RREF of a matrix in MatLab

I have questions about manually RREF'ing a given matrix. So I went through it partially but I can't figure out where to go from here. Thanks! M = [1 0 2 1 18; 0 -3 -2 0 -8; -2 -3 0 0 ...
0
votes
3answers
51 views

how to get more than one number inside of matrices

Ok. I have a simple question although I'm still fairly new to Matlab (taught myself). So I was wanting a 1x6 matrix to look like this below: 0 0 1 0 321, 12 <--- needs to be in one box in ...
0
votes
0answers
18 views

to add incoming values in an embedded function block into an single array

to add incoming values in an embedded function block into an single array usually this works for matlab but not in embedded function y = zeros(1,10); for i=1:10; y(i) = i + rand; ...
0
votes
1answer
38 views

Select specific array and create and plot a new array in MatLab

I have created random lines and I want to chose some of them in order to plot them in red, while the rest will be plotted in blue. My code so far is %Initial line values tracks=input('Give me the ...
0
votes
1answer
79 views

Sorting dicom dataset in Matlab

Hi have about 5000 2d images from multiple CT-scans and need to get them sorted. The dataset is directly imported from a GE workstation. Right now the images are in bunches of about 10 sorted images ...
0
votes
1answer
60 views

Weird behaviour using IF statements and structs in Matlab?

The output is always two values when it is supposed to be only 1 .. s is a struct where 1x1024 struct array with fields: ID s1 s2 s3 s4 PB1 PB2 PB3 PB4 eG ...
0
votes
1answer
118 views

Arrays syntax in python [duplicate]

How to say in python "from the beginning of the array" and "all the array". For example if my code in Matlab is: images(:, n) = img(:) What is its equivalent in python?

1 2 3 4 5 11