Ioannis Andreou
Followers: 0 Following: 0
Feeds
已回答
Replace cell array based on condition
Use cellfun: tfReplace = cellfun(@(c) any(any(c>5)), A, 'UniformOutput', true); A{tfReplace} = B;
Replace cell array based on condition
Use cellfun: tfReplace = cellfun(@(c) any(any(c>5)), A, 'UniformOutput', true); A{tfReplace} = B;
5 years 前 | 1
| 已接受
已回答
Why do I get the error “Index exceeds matrix dimensions.”?
you set hour = n; and then construct SOC_trajectory = optimconstr (n, 1); and then finally you iterate for i = 1:hour ...
Why do I get the error “Index exceeds matrix dimensions.”?
you set hour = n; and then construct SOC_trajectory = optimconstr (n, 1); and then finally you iterate for i = 1:hour ...
5 years 前 | 0
已回答
how to generate overlapping series
Try this packages = nan(19, 2000); for i = 1:19 packages(i,:) = data((i-1)*1500+1: i*1500+500); end However there will b...
how to generate overlapping series
Try this packages = nan(19, 2000); for i = 1:19 packages(i,:) = data((i-1)*1500+1: i*1500+500); end However there will b...
5 years 前 | 0
已回答
Variable Number of Input Arguments
If you want variable number of inputs use nargin here function too_young = under_age(age, limit) if nargin < 2 li...
Variable Number of Input Arguments
If you want variable number of inputs use nargin here function too_young = under_age(age, limit) if nargin < 2 li...
5 years 前 | 0
| 已接受
已回答
One ode, two differential equations
As far as I can tell from your code, the righthanded side of your differential equations is the same. Meaning you have the syste...
One ode, two differential equations
As far as I can tell from your code, the righthanded side of your differential equations is the same. Meaning you have the syste...
5 years 前 | 0
提问
sum of products skipping an index
Hello everyone, I have difficulties efficiently implementing the following equation: For Inputs: a,b,c 1xN doubles I want ...
5 years 前 | 1 个回答 | 0