Community Profile

photo

Adriano


Last seen: 6 månader ago Active since 2014

Statistics

  • Thankful Level 4
  • First Review
  • 3 Month Streak
  • First Answer

View badges

Content Feed

View by

Question


Fail to load bundle #727
Hi all, after I complete the last updated of Matlab 2022b I receive sometimes this error: For example, I see this alert when...

mer än ett år ago | 1 answer | 0

1

answer

Question


How ca n I get a table from web page?
Hi all, I need to get the table from this url: https://www.cambriafunds.com/tail-holdings I tried using webread fuction but it...

mer än ett år ago | 1 answer | 0

1

answer

Answered
How can I open an url into matlab browser?
I don't find System Web browser section in Preferences. Please, take a look at the image attached below.

mer än ett år ago | 0

Question


How can I open an url into matlab browser?
Hi all, I have this code: [stat, h] = web('https://www.cambriafunds.com/tail-holdings','-new'); By default, Matlab opens the ...

mer än ett år ago | 2 answers | 0

2

answers

Question


How can I convert a datetime array from english to spanish format?
Hi all, I have this datetime array : '27-Dec-2019' '03-Jan-2020' '10-Jan-2020' '17-Jan-2020' '24-Jan-2020' '31-Jan-2020...

nästan 2 år ago | 1 answer | 0

1

answer

Question


How can I get data from a website?
Hi all, please open the url http://vixcentral.com/ and click on "HIstorical Prices" tab. I need to get the data of the curve ch...

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

1

answer

Question


How can I get a table from an url?
Hi all, I need to get in matlab the table from this url: https://www.cambriafunds.com/tail-holdings I tried with webread and...

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

0

answers

Question


How to get data from a website
Hi all, I need to get "Ongoing charge" data (0,11%) from this url: https://markets.ft.com/data/funds/tearsheet/summary?s=LU032...

mer än 3 år ago | 1 answer | 0

1

answer

Question


Import excel data from web doesn't work
Hi all, I need to import some data downloaded from an excel url. To do it, I download the excel on my pc (even if i don't need ...

mer än 3 år ago | 1 answer | 0

1

answer

Question


How to change date in a website page
Hi all, I have a problem: I need to change the "Date Range" in this webpage https://markets.ft.com/data/funds/tearsheet/histori...

mer än 3 år ago | 1 answer | 0

1

answer

Question


solve function give a wrong solution
Hi all, I'm trying to solve a simple equation in Matlab using solve function. The code is: syms x solv = solve( (1+x/12)^12 =...

mer än 3 år ago | 2 answers | 0

2

answers

Question


From excel link to time table
Hi all, I have to download an excel file from this link: https://app2.msci.com/eqb/currency/performance/90463.48.all.xls and ...

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

1

answer

Question


How can I round numbers from summarize function at 2 decimals?
Hi everybody, Do you know how to round summarize numbers with only 2 decimals? For example I would like to read "Constant" v...

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

0

answers

Answered
From char to timetable
Simply great!!! The solution is what i wanted. I didn't know the splitlines function and it's very useful. Many thanks!!

ungefär 5 år ago | 0

Question


From char to timetable
Hi everybody! I have a char variable of 1x446405. The structure of the variable is always the same like below: 2019-...

ungefär 5 år ago | 2 answers | 0

2

answers

Question


How to make a summation with index vector?
Hi! I need to solve this summation in Matlab: <</matlabcentral/answers/uploaded_files/117072/matlab.JPG>> where N is a con...

nästan 6 år ago | 1 answer | 0

1

answer

Question


How to convert a cell vector with numbers and non-numbers into a comma-seprated (.csv) format?
Hi, I have the cell array: Matrix(1,1) = {'ABCD'} Matrix(1,2) = {'*'} Matrix(2,1) = {'251'} Matrix(2,2) = {...

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

1

answer

Question


Why ocr function doesn't recognize the numbers?
Hi, I have the image below: <</matlabcentral/answers/uploaded_files/101580/Captura.PNG>> I need to capture the numbers ...

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

1

answer

Question


How to change uicontrol properties in a callback function of a different uicontrol?
Hi everyone! I'm developing a GUI in which I would like to make invisible a popupmenu when every value is choosed by another pop...

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

0

answers

Question


How to load a variable into the workspace not as a structure into a GUI?
Hi everybody, I'm developing a GUI and I need to load a variable into the workspace. I'm using the "assignin" function but it ge...

mer än 6 år ago | 1 answer | 0

1

answer

Answered
How do I label the grouped horizontal bars in MATLAB?
I solved adding this code: yb = [datas{2,2}, datas{3,2}, datas{5,2}, datas{1,2}, datas{4,2}]; for j = 1:size(yb,2) ...

mer än 6 år ago | 0

| accepted

Question


How do I label the grouped horizontal bars in MATLAB?
I know someone uses the text function but I am ont able to solve my problem. This is my code: label = categorical({'A';'B';...

nästan 7 år ago | 2 answers | 0

2

answers

Answered
Datafeed returns an error using fetch function
This is the Mathworks answer on my Technical Support on yahoo fetch function: I sincerely apologize for the recent issues you...

nästan 7 år ago | 0

Question


Java error to read pdf file
I'm trying to open a PDF file in matlab through java. The code is: clear java javaaddpath('C:\Users\AURYN BASE 1\Downloa...

nästan 7 år ago | 1 answer | 0

1

answer

Question


How can i change value in a web drop down box?
Hello I need to read values from this webpage: <https://markets.ft.com/data/funds/tearsheet/historical?s=GB00B1VMCY93:EUR> ...

nästan 7 år ago | 1 answer | 0

1

answer

Question


Bar plot error using text function
Hi, A friend with (Matlab2017) gave me this code: label = categorical({'IBS';'ZEN';'RE';'LRS';'SEASONAL';'AAA';'COMBOCOM...

nästan 7 år ago | 1 answer | 0

1

answer

Question


How Can I extend chart range datas in excel using actxserver?
This is my code: excel = actxserver('Excel.Application'); excel.Visible = true; excel.DisplayAlerts = false; ...

nästan 7 år ago | 0 answers | 0

0

answers

Question


How Can I change the range of a excel chart using actxserver?
This is my code: excel = actxserver('Excel.Application'); excel.Visible = true; excel.DisplayAlerts = false; filen...

nästan 7 år ago | 1 answer | 1

1

answer

Question


How to get data from web?
Hello! I need to donwload the table and the datas in this url: http://www.morningstar.es/es/tools/categoryoverview.aspx?filte...

nästan 7 år ago | 1 answer | 0

1

answer

Load more