Posts by Daniel Magalhães Bicalho • 31 points
5 posts
-
1
votes2
answers1265
viewsA: How to convert CSV to XLSX with python?
See pandas, where you can read a csv and use the Excelwriter and to_excel function to do the writing. https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_excel.html Another…
-
0
votes1
answer218
viewsA: Python - Strings and files
Use the concept of with open(file) as f: #read or write operations is safer for handling exceptions and will also make the code a little cleaner. In the documentation you have clear information…
-
0
votes1
answer113
viewsA: Generate struct in dynamically Matlab, with different size fields
Response in Soen Define the following method: function resultStruct = CreateEmptySruct () resultStruct.img_index = 0 ; resultStruct.correlated = cell(1,5); resultStruct.correlationFactor =…
matlabanswered Daniel Magalhães Bicalho 31 -
1
votes1
answer113
viewsQ: Generate struct in dynamically Matlab, with different size fields
I have a demand that is the following, I want to create a set of images and I will relate them, for that I create a struct vector similar to resultsInfo =…
matlabasked Daniel Magalhães Bicalho 31 -
1
votes2
answers140
viewsA: script about the R program
I’m gonna try to help you and I need some information. How do you define the month and year? What is the default file name? What data is contained in this AGB_PY component? You can do something…
ranswered Daniel Magalhães Bicalho 31