Risposto
A Counter for the Frequency of Occurrence of an Element in a matrix for every iteration
Based on what you've outlined, this should work: cand_values = [1:5]; cand_values = sort(cand_values); counts = zeros(si...

circa 10 anni fa | 0

Risposto
Best way to input an unknown number of structures and options.
The issue is that the optional arguments need string names |'struct2'| |'struct3'| and it's freaking out because you're not pass...

circa 10 anni fa | 0

| accettato

Risposto
Setting min/max limits to the function random (not rand nor randn)?
The easiest way to do this in your context is to restrict the actual PDF you're using to generate the random variable, rather th...

circa 10 anni fa | 1

| accettato

Risposto
Find the nearest whole number and whole number+/-0.5 for a given value
You want v2 = ceil(2*v0)/2 v1 = floor(2*v0)/2 The "round to the closest value" is round(2*v_0)/2

circa 10 anni fa | 0

Risposto
Matlab find index of matched elements and replace values
I would do it this way: ta = [735965;735966;735968;735969;735971] data = [1;2;4;5;7]; act_time = [735965:735971]; a...

circa 10 anni fa | 1

| accettato

Risposto
Can Non-linear regression be used for time series forecasting?
The short answer is yes. At this point in the example: [b,bint,resid] = regress(logts.data, X); They've returned a set o...

circa 10 anni fa | 0

Risposto
Fminsearch: more initial values than parameters
Okay, so based on what I outlined earlier, I think this is the way you should try to solve this. First of all, structure your d...

circa 10 anni fa | 0

| accettato

Risposto
Is there a way to ask the user the hours?
You'd still need some kind of a tic-cycle to poll the current time, which is probably the guts of your clock function. I think ...

circa 10 anni fa | 0

Risposto
how to use vectorized language or any other methods to replace the following code, in order to make the computation faster
I think this should work. Replace your |for| loop with: i = [1:S] Q2(i,:,i) = Q2(i,:,i) + 1; This works on the test ca...

circa 10 anni fa | 0

| accettato

Risposto
Minimization with discrete variable
It's a little bit unclear what your objective function is, but suppose it's something like |f(A,B)| where |A| and |B| are your d...

circa 10 anni fa | 0

Risposto
Automatic selection of best curve-fitting equation type?
I don't think there's a function which is like "best fit my data" (for a variety of reasons, but the simplest is that model sele...

circa 10 anni fa | 0

Risposto
Matlab code without for loop
I think this should work: i = image('file.jpg')%load in whatever image it is i(i == 1) = 255; i(i ~= 255) = 0;

circa 10 anni fa | 0

| accettato

Risposto
How to integrate multivariable function numerically?
The issue is that for |triplequad| to work fun(x,y,z) must accept a vector x and scalars y and z, and return a vector of values ...

circa 10 anni fa | 0

Risposto
Where can I buy Server capacity?
I think this page provides you with a few options. The Amazon EC2 option is probably what you want since it bills hourly. ht...

circa 10 anni fa | 0

Risposto
.m file (included into .exe) to string
This ended up being the solution, although it was posted as a comment: I'm not an expert on mcc, but I don't think that's possib...

circa 10 anni fa | 0

Risposto
Warning: Inverse CDF calculation did not converge for p
It sounds like you're trying to estimate the inverse CDF function in |kdensity|. This is basically done in two steps in Matla...

circa 10 anni fa | 0

Risposto
Stop updating during a FOR loop
I think I would suggest something like this: NOC1 = Get_Control(F); %%get initial control limit fault_state = 0; for i =...

circa 10 anni fa | 0

Risposto
How to plot a disc with a given center c and radius r
You can use this answer: http://www.mathworks.com/matlabcentral/answers/98665-how-do-i-plot-a-circle-with-a-given-radius-and-...

circa 10 anni fa | 0

| accettato

Risposto
Ι have a problem finding a minimum
It looks like the issue is that you have not passed |P| into your function. You probably want something like this instead: ...

circa 10 anni fa | 0

Risposto
Retain dummy variable labels from converting categorical to dummyvar
I think you can make sense of this by following the documentation: When group is a numeric vector, dummyvar assumes that the gro...

circa 10 anni fa | 0

Domanda


Patternsearch polls out of mesh points
I've encountered an issue with the patternsearch algorithm. I have a global optimization problem with an objective function tha...

circa 10 anni fa | 2 risposte | 0

2

risposte

Risposto
Shifting values in a matrix, Alignment of two matrices
I think you can do it this way: [~,ind] = ismember(B(:,2),A(:,2)) C = [A,B(ind)]; D = C(:,[1,3]); I'm not sure how ...

circa 10 anni fa | 0

Risposto
How convert matrix to original form
This loops, but it should be fast enough for your purposes, and it's easy to read, so you can probably figure out how to vectori...

circa 10 anni fa | 0

Risposto
Finding Zero of Sum of Functions by Iteration
I think the solution is to write a function: function [ sum ] = func(j,g,t,X) sum = 0; for i = 1:2*j+1 ...

circa 10 anni fa | 0

| accettato

Risposto
Problem using lsqnonlin for minimization of a function
The problem is your function handle: myfunction=@(x)ymod(values)-yexp The value |x| is never used in your function, so t...

circa 10 anni fa | 0

| accettato

Risposto
Integers can only be combined with integers of the same class, or scalar doubles
Try setting |data = double(data)| first.

circa 10 anni fa | 4

| accettato

Risposto
How to fill in NaNs or <undefined> in data with the mode of each column
Select the NaNs and set them to things: A = [1 2 NaN 4 5; 1 2 3 NaN 5; 1 NaN NaN NaN 5]; m = mode(A,1); m = repmat(m,s...

circa 10 anni fa | 0

Risposto
How to obtain total sum by group
Yes. This should work; it's probably not the shortest way to do it, but it avoids looping. key = unique(groupid); tsum = ...

circa 10 anni fa | 1

Risposto
An issue related to GENETIC ALGORITHM. I am trying to solve a Large Binary Integer Linear optimization Problem using GA. GA is violating all the linear constraints.
Your problem is that you probably aren't starting with a population which meets your constraints. I can get a solution to your ...

circa 10 anni fa | 0

| accettato

Carica altro