質問


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年以上 前 | 2 件の回答 | 0

2

回答

回答済み
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年以上 前 | 0

| 採用済み

質問


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年以上 前 | 1 件の回答 | 0

1

回答

回答済み
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年以上 前 | 1

| 採用済み

質問


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年以上 前 | 3 件の回答 | 0

3

回答

質問


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年以上 前 | 1 件の回答 | 0

1

回答

質問


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年 前 | 1 件の回答 | 0

1

回答

質問


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年 前 | 0 件の回答 | 0

0

回答

質問


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年以上 前 | 0 件の回答 | 0

0

回答

解決済み


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年以上 前

解決済み


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年以上 前

質問


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年以上 前 | 1 件の回答 | 0

1

回答

質問


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年以上 前 | 1 件の回答 | 0

1

回答

解決済み


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年以上 前

解決済み


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

7年以上 前

解決済み


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年以上 前

解決済み


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

7年以上 前

解決済み


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

7年以上 前

解決済み


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年以上 前

解決済み


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年以上 前

解決済み


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年以上 前

解決済み


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年以上 前