Yvan Lengwiler
Followers: 0 Following: 0
Professional Interests: finance, asset pricing, auction theory, differential equations
Statistica
RANK
6.503
of 295.495
REPUTAZIONE
4
CONTRIBUTI
2 Domande
4 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.0%
VOTI RICEVUTI
0
RANK
554 of 20.240
REPUTAZIONE
3.136
VALUTAZIONE MEDIA
4.70
CONTRIBUTI
12 File
DOWNLOAD
96
ALL TIME DOWNLOAD
25551
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Inviato
X-13 Toolbox for Seasonal Filtering
Matlab toolbox providing access to X-13 seasonal adjustment programs of the US Census Bureau.
8 mesi fa | 53 download |
Risolto
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
circa 3 anni fa
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 ...
oltre 3 anni fa | 0
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...
quasi 4 anni fa | 0
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, ...
quasi 4 anni fa | 0
| accettato
Inviato
Import PWT, MPD, and JST Databases
Downloads the Penn World Table, the Maddison Project Data, and the Jordà-Schularick-Taylor Data from the web.
circa 5 anni fa | 3 download |
Inviato
getxls
GETXLS is a GUI that allows you to easily transfer data from an Excel file into Matlab's workspace.
circa 5 anni fa | 5 download |
Domanda
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...
circa 5 anni fa | 0 risposte | 0
0
rispostehow to add a separator line in popup uicontrol?
Here's a solution to this problem. function MyGUI hline = '--------------------------------'; % string for a h...
oltre 8 anni fa | 0
Inviato
logticks
logticks replaces the y-axis ticks of a logarithmic graph with the non-logarithmic values.
oltre 8 anni fa | 2 download |
Domanda
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...
quasi 10 anni fa | 1 risposta | 0
1
rispostaInviato
The X Collection
Collection of programs that ease interaction with Excel files.
quasi 10 anni fa | 2 download |
Inviato
Straightforward COPY and PASTE functions
Allows very simple manual exchange with other applications through the clipboard.
quasi 10 anni fa | 4 download |
Risolto
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...
oltre 12 anni fa
Risolto
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. ...
oltre 12 anni fa
Risolto
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.
oltre 12 anni fa
Risolto
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 ...
oltre 12 anni fa
Risolto
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...
oltre 12 anni fa
Risolto
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 =...
oltre 12 anni fa
Risolto
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_...
oltre 12 anni fa
Risolto
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 ...
oltre 12 anni fa
Risolto
Program an exclusive OR operation with logical operators
Program an exclusive or operation *without* using the MATLAB function xor. Use logical operators like |, &, ~, ... instead. ...
oltre 12 anni fa
Risolto
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...
oltre 12 anni fa
Risolto
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...
oltre 12 anni fa
Risolto
Triangle Numbers Below N
This is an offshoot of <http://www.mathworks.com/matlabcentral/cody/problems/5-triangle-numbers Cody Problem 5: Triangle Numbers...
oltre 12 anni fa
Risolto
Test for balanced parentheses
Given the input inStr, give the boolean output out indicating whether all the parentheses are balanced. Examples: * If ...
oltre 12 anni fa
Risolto
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...
oltre 12 anni fa
Problema
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...
oltre 12 anni fa | 2 | 298 risolutori