Yvan Lengwiler - MATLAB Central
photo

Yvan Lengwiler


Last seen: 4 månader ago Active since 2007

Followers: 0   Following: 0

Message

Professional Interests: finance, asset pricing, auction theory, differential equations

Statistics

All
CodyFile ExchangeMATLAB AnswersFrom 05/07 to 03/25Use left and right arrows to move selectionFrom 05/07Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

2 Questions
4 Answers

File Exchange

12 Files

Cody

2 Problems
88 Solutions

RANK
6 503
of 297 711

REPUTATION
4

CONTRIBUTIONS
2 Questions
4 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
0

RANK
553 of 20 465

REPUTATION
3 156

AVERAGE RATING
4.70

CONTRIBUTIONS
12 Files

DOWNLOADS
71

ALL TIME DOWNLOADS
25746

RANK
6 965
of 159 406

CONTRIBUTIONS
2 Problems
88 Solutions

SCORE
920

NUMBER OF BADGES
4

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • MATLAB Central Treasure Hunt Finisher
  • Knowledgeable Level 1
  • First Answer
  • Quiz Master
  • Creator
  • GitHub Submissions Level 1
  • Personal Best Downloads Level 3
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • Commenter

View badges

Feeds

View by

Submitted


X-13 Toolbox for Seasonal Filtering
Matlab toolbox providing access to X-13 seasonal adjustment programs of the US Census Bureau.

12 månader ago | 44 downloads |

4.8 / 5
Thumbnail

Solved


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

mer än 3 år ago

Answered
Turn logical matrix into string vector
(I wrote my answer as a comment above. Sorry. Here it is as a formal answer.) Of course, even if a solution does not appear to ...

nästan 4 år ago | 0

Answered
how to reset drop down list(go to first option) when pushing any other button in App designer
Your ItemsData are strings app.ElementLisDropDown.ItemsData = {'1', '2', '3', '4', '5'}; but the value you assign is an intege...

ungefär 4 år ago | 0

Answered
For loop: access values in between steps
for i = 1:3:100 %do something with rows 1, 4, 7, 10, ... end for i = 2:3:100 %do something with rows 2, 5, 9, 11, ...

ungefär 4 år ago | 0

| accepted

Submitted


Import PWT, MPD, and JST Databases
Downloads the Penn World Table, the Maddison Project Data, and the Jordà-Schularick-Taylor Data from the web.

mer än 5 år ago | 1 download |

5.0 / 5
Thumbnail

Submitted


getxls
GETXLS is a GUI that allows you to easily transfer data from an Excel file into Matlab's workspace.

mer än 5 år ago | 2 downloads |

4.8 / 5
Thumbnail

Question


Read VBA Module in Excel via ActiveX
I run ML 2019a. I know how to connect with the Excel COM server. I know how to read and write material from and into an Excel sp...

mer än 5 år ago | 0 answers | 0

0

answers

Answered
how to add a separator line in popup uicontrol?
Here's a solution to this problem. function MyGUI hline = '--------------------------------'; % string for a h...

mer än 8 år ago | 0

Submitted


logticks
logticks replaces the y-axis ticks of a logarithmic graph with the non-logarithmic values.

ungefär 9 år ago | 2 downloads |

0.0 / 5
Thumbnail

Question


copy a dynamicprops object by value
I've created a class that is a subclass of dynamicprops, classdef myclass < dynamicprops When I create an instance of t...

ungefär 10 år ago | 1 answer | 0

1

answer

Submitted


The X Collection
Collection of programs that ease interaction with Excel files.

ungefär 10 år ago | 1 download |

5.0 / 5
Thumbnail

Submitted


Straightforward COPY and PASTE functions
Allows very simple manual exchange with other applications through the clipboard.

ungefär 10 år ago | 3 downloads |

5.0 / 5
Thumbnail

Solved


Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...

nästan 13 år ago

Solved


So many choices
For inputs _n_ and _k_ (in that order), output the number of ways that k objects can be chosen from amongst n distinct objects. ...

ungefär 13 år ago

Solved


Find the sum of the elements in the "second" diagonal
Find the sum of the elements in the diagonal that starts at the top-right corner and ends at the bottom-left corner.

ungefär 13 år ago

Solved


Make one big string out of two smaller strings
If you have two small strings, like 'a' and 'b', return them put together like 'ab'. 'a' and 'b' => 'ab' For extra ...

ungefär 13 år ago

Solved


Remove NaN ?
input -> matrix (n*m) with at least one element equal to NaN; output -> matrix(p*m), the same matrix where we deleted the enti...

ungefär 13 år ago

Solved


De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if a =...

ungefär 13 år ago

Solved


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

ungefär 13 år ago

Solved


the fly, the train, the second train, and their Zeno's paradox
*You have heard this one*: A train leaves station _A_ and travels with constant velocity _v1_. A second train leaves station _B_...

ungefär 13 år ago

Solved


System of equations
Find a solution to a system of equations represented by a |n| by |n+1| matrix. For instance, [ 2 0 4; => 2*x = 4 ...

ungefär 13 år ago

Solved


given 3 sides, find area of this triangle
1:3 -> 0; 3:5 -> 6

ungefär 13 år ago

Solved


Program an exclusive OR operation with logical operators
Program an exclusive or operation *without* using the MATLAB function xor. Use logical operators like |, &, ~, ... instead. ...

ungefär 13 år ago

Solved


Right and wrong
Given a vector of lengths [a b c], determines whether a triangle with those sides lengths is a right triangle: <http://en.wikipe...

ungefär 13 år ago

Solved


All your base are belong to us
Find the base _b_ logarithm of the input decimal number _x_. Express the output as a decimal number. The first argument is the n...

ungefär 13 år ago

Solved


Triangle Numbers Below N
This is an offshoot of <http://www.mathworks.com/matlabcentral/cody/problems/5-triangle-numbers Cody Problem 5: Triangle Numbers...

ungefär 13 år ago

Solved


Test for balanced parentheses
Given the input inStr, give the boolean output out indicating whether all the parentheses are balanced. Examples: * If ...

ungefär 13 år ago

Solved


Sorting
Assume that x is an n-by-2 matrix. The aim is to return the first column of x, but sorted according to the second column. Exa...

ungefär 13 år ago

Problem


Sorting
Assume that x is an n-by-2 matrix. The aim is to return the first column of x, but sorted according to the second column. Exa...

ungefär 13 år ago | 2 | 304 solvers

Load more