Question


Using Dates (if possible) as structure fields.
I'd like to know if there's a way to use dates as struct fields. The data I want to store in the struct comes in a daily basis a...

6 years ago | 2 answers | 0

2

answers

Answered
Transform a Dict (or any python data structure) to Struct or Cell Array in Matlab.
I wrote a small function that transforms the dictionary into a cell array and then that cell array is used to populate a structu...

6 years ago | 0

| accepted

Question


Transform a Dict (or any python data structure) to Struct or Cell Array in Matlab.
Hi, I'd like to create a structure or a cell array from Matlab given a Python dictionary. I'm using the built-in Python API ...

6 years ago | 1 answer | 0

1

answer

Answered
Read CSV file with column headers and row headers.
Hey guys, I just went for an even simpler solution, I used this function called <https://www.mathworks.com/matlabcentral/fi...

6 years ago | 1

| accepted

Question


Read CSV file with column headers and row headers.
Hi, I'd like to know how to read a CSV file that has column headers as well as row headers. Is there a function in Matlab tha...

6 years ago | 3 answers | 0

3

answers

Question


I want to extract the page buttons/widgets in a website using URLREAD.
I want to learn what is the common expression for Buttons/Widgets that contain page numbers of a catalog, e.g. like in this <htt...

6 years ago | 1 answer | 0

1

answer

Question


Call a VBA object in Matlab with Activex server.
Hello, I already know we can call functions/subs from a VBA module within Matlab using activex server with this command: Exc...

7 years ago | 1 answer | 0

1

answer

Question


How to call Factset using Matlab through an Excel spreadsheet.
Hello, I'd like to know how to use FDS codes (Factset codes) in Matlab like I do in a Excel spreadsheet. For example, if I w...

7 years ago | 0 answers | 0

0

answers

Question


Different magnitude values when computing f-domain function by hand and with fft matlab command.
Hello everyone, I have the following function in time-domain and its correspondent f-domain transform: <</matlabcentral/answ...

7 years ago | 0 answers | 0

0

answers

Solved


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

7 years ago

Solved


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

7 years ago

Question


I can't read my .txt file using importdata. Problem with format?
Hello, I made a script that reads a .txt file using textscan to manipulate some of the values, the outcome is another .txt f...

7 years ago | 1 answer | 0

1

answer

Question


Matlab: Export concatenation of cell arrays into a txt file
I have two different sets of arrays within an array, which I called: y={...}; % cell array of 1x1, with a 26x1 cell array w...

7 years ago | 1 answer | 0

1

answer

Solved


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

7 years ago

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

7 years ago

Solved


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

7 years ago

Solved


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

7 years ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

7 years ago

Solved


Connect blocks in a model
Connect the blocks in the model to produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/connect-blocks...

7 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

7 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

7 years ago

Solved


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:...

7 years ago