photo

Seth DeLand

MathWorks

Last seen: 3日 前 2011 年からアクティブ

Followers: 0   Following: 0

統計

All
  • MATLAB Flipbook Mini Hack Participant
  • Personal Best Downloads Level 4
  • MATLAB Mini Hack Participant
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • 6 Month Streak
  • Knowledgeable Level 4
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

解決済み


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

約1年 前

回答済み
Cannot Connect to Local Redis Instance: Invalid Host Name "localhost"
I encountered this same message, for me the problem was that my /etc/hosts file on MacOS had been modified when I did some work ...

1年以上 前 | 0

送信済み


Analyzing Fleet Test Data using MATLAB
Files from the webinar "Analyzing Fleet Test Data using MATLAB"

3年弱 前 | ダウンロード 2 件 |

送信済み


Optimization in MATLAB: An Introduction to Quadratic Program
Files used in "An Introduction to Quadratic Programming" Webinar

約3年 前 | ダウンロード 9 件 |

Thumbnail

解決済み


5th Time's a Charm
Write a function that will return the input value. However, your function must fail the first four times, only functioning prope...

6年以上 前

解決済み


Ned's Queens
A tribute to Cody's five-year anniversary should also celebrate the people behind Cody, and in this particular case, our illustr...

6年以上 前

解決済み


The 5th Root
Write a function to find the 5th root of a number. It sounds easy, but the typical functions are not allowed (see the test su...

6年以上 前

送信済み


Mixed-Integer Linear Programming in MATLAB
MATLAB files from the webinar

8年弱 前 | ダウンロード 7 件 |

Thumbnail

送信済み


Files for the 2012 Webinar "Tips and Tricks - Getting Started Using Optimization with MATLAB"
These are the files that were used for the demonstrations in the webinar.

8年弱 前 | ダウンロード 9 件 |

送信済み


Optimal Component Selection Using the Mixed-Integer Genetic Algorithm
Use the mixed-integer genetic algorithm to solve an engineering design problem.

8年弱 前 | ダウンロード 1 件 |

Thumbnail

解決済み


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

約8年 前

解決済み


Model a mass spring system
Model an ideal mass-spring system shown below where the spring is initially stretched. <<http://blogs.mathworks.com/images/se...

8年以上 前

解決済み


Make a half wave rectifier
Produce a signal that outputs the given sine wave source when it is greater than zero and outputs zero when it is less than zero...

8年以上 前

解決済み


Produce a cosine wave
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/cosine-eqn.png>>

8年以上 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

8年以上 前

回答済み
Optimizing FLC with GA
Hi Michael, Here's an <http://www.mathworks.com/help/gads/examples/coding-and-minimizing-a-fitness-function-using-the-genetic...

10年弱 前 | 0

解決済み


Text processing - Help Johnny write a letter home from camp
Johnny overuses the word 'great'. Write a script that will help him with this and future letters. If a sentence contains more ...

10年弱 前

解決済み


Set the array elements whose value is 13 to 0
Input A either an array or a vector (which can be empty) Output B will be the same size as A . All elements of A equal to 13...

10年以上 前

回答済み
how can i solved mixed integer linear programming using genetic algorithm in matlab
If your objective function and constraints are linear, I highly recommend using the mixed-integer linear programming solver in O...

10年以上 前 | 0

回答済み
how to implement MILP in matlab
As of R2014a, Optimization Toolbox has a mixed-integer linear programming solver: <http://www.mathworks.com/help/optim/ug/intli...

10年以上 前 | 0

| 採用済み

回答済み
Numerical packing
Seeing how Optimization Toolbox has a mixed-integer solver in R2014a, I figured I would post this alternate solution that uses <...

10年以上 前 | 3

回答済み
simultaneous linear equations minimization by linprog command
The summation of the variables being equal to a constant could be taken care of by an equality constraint. In that case, your A...

10年以上 前 | 0

解決済み


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

11年弱 前

解決済み


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

11年弱 前

解決済み


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

11年弱 前

解決済み


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

11年弱 前

回答済み
I'm trying to write a bit of user friendly code where the user is prompted to enter file names and the names will be stored in an array. However, I keep getting errors. Can someone fix this code below?
Two things that I think will help: 1) Use a cell array to store the names of the files rather than an array. This will be ea...

11年弱 前 | 0

| 採用済み

回答済み
How do I find all the positive roots of (e^(-.2x ))(cos(2x))-.15x^2+1
2 things: 1) fzero is designed to find a single zero at a time. You will need to loop through each value for x0 and record the ...

11年以上 前 | 0

回答済み
Genetic Algorithm - Plotting fitness values
PlotFcns needs to be passed in as an option for ga: problem.options.PlotFcns = @gaplotbestf;

11年以上 前 | 1

| 採用済み

回答済み
export m-file with fmincon to C-Code for PowerPC
Hi Daniel, Generating C-Code from MATLAB code that includes optimization solvers such as fmincon is currently not supported. ...

11年以上 前 | 0

| 採用済み

さらに読み込む