Question


function to import varying size text file automatically ? - one step beyond the Import Data Wizard
Hello, The Import Data Wizard is a great little tool to use on one file, say "Customers_1.txt" ... then the user gets present...

6 years ago | 0 answers | 0

0

answers

Question


table / timetable - removing zero columns
My answer is: function pTable = aRemoveZeroTableColumns(primersTable) % % % pTable = primersTable; i...

6 years ago | 1 answer | 0

1

answer

Answered
Removing columns containing zeros
If you've got a table w/ various variable names that you want to keep, you might do: function pTable = aRemoveZeroTableColu...

6 years ago | 0

Question


Matlab Production Server: accessing environment/persistent variables on a matlab server
Use-case: Persistent & changing data (clients can change it during a call) across function calls made by clients towards a m...

6 years ago | 0 answers | 0

0

answers

Question


Matlab prodution server mSq = client.CreateProxy<MagicSquare> Error: "Unable to cast object of type <XYZ>.ABC_Proxy to ABC"
The dot-net example of deploying a package on a production server and consuming a function are very useful. Nonetheless, there m...

6 years ago | 0 answers | 0

0

answers

Question


cannot resolve dependency to assembly 'Google.ProtocolBuffers, Version 2.3.0.277, Culture=neutral, PublicKeyToken=17b... because it has not been preloaded.
Hi guys, Am trying to import the .NET assembly, path: C:\Program Files\MATLAB\MATLAB Production Server\R2018a\client\dotne...

6 years ago | 0 answers | 0

0

answers

Answered
IQFeed: plot return from array of cells?
Right ... many issues with using the IQFeed API ... such as: 1) Examples from the DOCs not working: Trial>> timeseries(c,se...

6 years ago | 0

Question


IQFeed: plot return from array of cells?
Hi, Just testing the IQFeed API and glad to see some examples on the docs. However, I can see following: 1) goog = history(c...

6 years ago | 3 answers | 0

3

answers

Question


pandas reshaping and pivoting equivalent
What is the equivalent to Pandas reshaping & pivoting? It can be referenced at: <https://pandas.pydata.org/pandas-docs/stabl...

6 years ago | 0 answers | 0

0

answers

Question


can a timetable column reference a function handle automatically and dynamically add current value based on a set of computations?
Reviving this question. Adding data: can always be done through adding a new column by referencing a function, such as: timeTa...

6 years ago | 1 answer | 0

1

answer

Question


Removing weekends and holidays from a TimeTable
How can one remove weekends and holidays entries from a TimeTable? Thanks!

6 years ago | 2 answers | 0

2

answers

Question


assign content into an empty timetable based on timerange variable
Say you've got an empty timetable: t = timetable(); t.Data = 0; and you're given a timerange var: tr and you need to...

6 years ago | 1 answer | 0

1

answer

Answered
calculating the difference between 2 dates
there's something better now since 2014 release I believe: w = between(startRange,endRange,'weeks') y = between(startRange...

6 years ago | 1

Question


extract start and end of a timerange
Working with timerange objects is great! One can keep a table in one piece and operate on subscripts of that table with a set of...

6 years ago | 1 answer | 0

1

answer

Submitted


StratOpt WFP PATH View Processor
StratOpt WFP Files Analysis: view the optimization paths graphically

6 years ago | 2 downloads |

Thumbnail

Answered
How can I increase GUI slider steps?
this ('SliderStep' property) doesn't exist in slider object of the gui designer.

6 years ago | 1

Question


app designer Slider object properties does not contain a 'SliderStep' property
Hello Team, As of 2017b, an app designer slider object has following properties: Show all properties BeingDe...

6 years ago | 1 answer | 0

1

answer

Question


A,B,C same size matrixes. A & C are double elements, B is with logical elements.How do I simply set A with values found in C only for true (or false) positions in B?
Setup: if true A = zeros(4,4); C = [1,2,3,0; 5,0,6,4; 9,7,0,4; 2,0,5,6]; B = false(4,4); B(2,4) = 1; B(3,2)...

6 years ago | 1 answer | 0

1

answer

Answered
using a matrix as an index to another matrix
I could do this: clc; a = [1 4 3 2; 6 8 7 9] [b,i] = sort(a,2,'descend') b = ...

7 years ago | 0

Question


using a matrix as an index to another matrix
Simple case: >> x = [ 10 8 ; 4 3 ] x = 10 8 4 3 >> [y,i] = sort(x,2 ) y...

7 years ago | 2 answers | 0

2

answers

Answered
keeping track of the original indices of an array after sorting
and B = A(I), according to documentation, isn't it? I get following: >> x = [ 1 3 2 7; 4 3 2 1] x = 1 3 ...

7 years ago | 1

Answered
for an existing financial time-series object, is there a simple way to add columns?
digging a bit more, it seems fts behave a lot like structures ... so: >> class(dt) ans = fints >> *dt.MA10* = fts2ma...

7 years ago | 0

| accepted

Answered
financial time series object - how to delete a column?
This was a funny one ... managed to understand why Time appears in the structure in the first place. Quote from <fints> definiti...

7 years ago | 0

Question


financial time series object - how to delete a column?
One might have: dt = desc: (none) freq: Daily (1) 'dates: (2715)' 'times: (2715)' 'Open: (2715)...

7 years ago | 2 answers | 0

2

answers

Answered
for an existing financial time-series object, is there a simple way to add columns?
I'll just give a partial answer I've found. For an object such as: dt = desc: (none) freq: Daily (1) '...

7 years ago | 0

Question


financial time series obiect: get a column by name string?
Say, I have a fts object of type: dt = desc: (none) freq: Daily (1) 'dates: (2715)' 'times: (2715...

7 years ago | 1 answer | 0

1

answer

Question


for an existing financial time-series object, is there a simple way to add columns?
I'm referring to pandas DataFrame as an example of adding a new ('return') column: spy['return'] = spy['close'].pct_change() ...

7 years ago | 2 answers | 0

2

answers