A répondu
Moving the contents in the cell array
data = {'abc' , 'def' , 'ghi'} data1([4 5 6])=data

plus de 7 ans il y a | 0

A répondu
Duplicate elements in array n times, where n is an array itself
A = [1 2 3] B = [2 3 1] C=cell2mat(arrayfun(@(x,y) repmat(x,1,y),A,B,'un',0))

plus de 7 ans il y a | 1

A répondu
create day month and year
d1=datenum('01-01-1971','dd-mm-yyyy') d2=datenum('31-12-1971','dd-mm-yyyy') d=datevec(d1:d2) d=d(:,1:3)

plus de 7 ans il y a | 2

A répondu
Time conversion in a table
a=[1010, NaN, 1256, NaN, 1345] idx=isnan(a) a(idx)=0 out=arrayfun(@(x) datestr(datenum(sprintf('%04d',x),'HHMM') ,'HH:MM') ...

plus de 7 ans il y a | 1

| A accepté

A répondu
How to extract a specific 3 digit number from a filename?
s='hst_05773_05_wfpc2_f502n_wf_sci.tif' out=regexp(s,'(?<=_f)\d{3}','match','once') or s='hst_05773_05_wfpc2_f502n_wf...

plus de 7 ans il y a | 1

| A accepté

A répondu
how to display output in matlab as table enclosed below
h={'count' 'x' 'f(x)' 'initial'} data=[2 1 -0.307799 0.00 3 0.544459 0.0153522 ...

plus de 7 ans il y a | 2

A répondu
Easy question converting numbers to hours
datestr(datenum(sprintf('%04d',1156),'HHMM') ,'HH:MM') Or a=sprintf('%04d',1156) a=sprintf('%s:%s',a(1:2),a(3:4))

plus de 7 ans il y a | 0

| A accepté

A répondu
Efficient method of searching cell array for multiple, partial (non exact) strings
*edit* MasterList = {'dog' 'house' 'hotdog' 'cat' 'house music' 'banana' 'that actor from the 80s'}; SearchFor = {'dog' 'h...

plus de 7 ans il y a | 1

A répondu
Unable to store the persistent variable
function out =exp_average(in,b) persistent average weight if isempty(weight) %It does not already exist weight = 0.1; ...

plus de 7 ans il y a | 1

| A accepté

A répondu
Simple read-in to matrix, vector
If you want to use your code, you have to know that fgetl load the line as a string, you need to convert it to double fid =...

plus de 7 ans il y a | 0

A répondu
Simple read-in to matrix, vector
d=importdata('file.txt') n=d(1) M=reshape(d(2:2+n*n-1),n,n)' v=d(end-n+1:end)

plus de 7 ans il y a | 0

A répondu
why stateflow during never execute?
There is an unconditional transition from B to C, which means there is no during action. But you can see the action in B when yo...

plus de 7 ans il y a | 0

A répondu
Count and "synchronize" events in several columns
idx=any(A(:,2:end)==1,2)' [~,~,ii]=unique(nonzeros(cumsum(~idx).*idx)) c=nan(size(A(:,1))) c(logical(idx))=ii out=[A c] ...

plus de 7 ans il y a | 0

A répondu
How do i specify the sample time of an Inport block simulink in 'milliseconds' programmatically from Matlab
You can't change it, and there is no need to do it. If you want a millisecond, just multiply it by 0.001

plus de 7 ans il y a | 0

| A accepté

A répondu
Count and "synchronize" events in several columns
A=[1 NaN NaN NaN 2 NaN NaN NaN 3 1 NaN NaN 4 1 1 NaN 5 NaN NaN NaN 6 NaN NaN NaN 7 NaN 1 NaN ...

plus de 7 ans il y a | 1

A répondu
run the for loop only once Matlab
If you want to run it once, then don't use a for loop, to increment ii, use ii=mod(ii,4)+1 don't use i, it's used to rep...

plus de 7 ans il y a | 0

| A accepté

A répondu
Attempted to access x(1,2); index out of bounds because size(x)=[105760,1].
From the error message, it appears that your variable x is a a column vector 105760x1 . In your code you are trying to access x(...

plus de 7 ans il y a | 0

| A accepté

A répondu
Search for files in directory
d='E:\' % your directory f=dir(fullfile(d,'test.txt'))

plus de 7 ans il y a | 0

A répondu
Index exceeds matrix dimensions
This has nothing to do with the dimension, look at this example A=[1 1;2 2] You can write it as you want A(:,:,1,1,...

plus de 7 ans il y a | 0

A répondu
I need to find 10000 ramdom # in the range of (0.078,0.0078) for mass and (2, 0.1) for diameter. Then calculate the density of the 10k and do a histogram of them. Can anybody help me please?. This is what I got so far but is not working.
You mean in the range of [0.0078 0.078] not [0.078, 0.0078], because 0.0078 is less then 0.078. a1 = 0.078; b1 = 0.0078; ...

plus de 7 ans il y a | 0

A répondu
use a loop structure .
This can be done without a for loop [m,n]=ndgrid(1:4); A=m*10+n

plus de 7 ans il y a | 0

A répondu
How to convert a numeric array to a table.I want the first row of data of the array to be J and the second row of data to be K in a table T[J K];
A=randi(10,2,5) names={'J','K'} cell2table(num2cell(A'),'VariableNames',names)

plus de 7 ans il y a | 0

A répondu
Finding second smallest element in a row.
X = [441 137 594 507 417 581 312 362 263 151 472 512 129 70 298 255 442 574 289 157 0]; out=min(setdiff(X,min(X))) or ...

plus de 7 ans il y a | 5

| A accepté

A répondu
Find Nonzero element of a signal in simulink - without using "Find" block
You can use compare to zero block <</matlabcentral/answers/uploaded_files/58497/ans12.jpg>>

plus de 7 ans il y a | 0

A répondu
How to select columns in a matrix of variable size?
m=size(A,2) B=A(:,1:3:m) C=A(:,setdiff(1:m,1:3:m))

plus de 7 ans il y a | 0

| A accepté

A répondu
how i can get all row of data from a table ??
T{:,:}

plus de 7 ans il y a | 0

A répondu
Find first non-zero column of a matrix
A=randi([0 2],20,8) [~,out]=max(sum(logical(A)))

plus de 7 ans il y a | 2

A répondu
extracting values from text files as matrix format
fid=fopen('file.txt') s=fgetl(fid) out={} while ischar(s) out{end+1}=regexp(s,'(?<=(ID:|Health:| Eccentricity:))\s+\S...

plus de 7 ans il y a | 0

| A accepté

A répondu
I want to find the x and y values of f(x,y) when f(x,y) is a minimum over x = -1:0.001:1 and y = -1:0.001:1.
x=-1:0.001:1 y=x [ii,jj]=ndgrid(x,y] z=sin(ii)+cos(jj) % Example [min_val,index]=min(z) xidx=x(index) yidx=y(index)

plus de 7 ans il y a | 2

| A accepté

Charger plus