Posts by cbe-user-99263 • 121 points
6 posts
-
0
votes1
answer42
viewsA: How do I resolve a problem of renaming ENCODED URL files?
The extra code should be changed to print('\nListagem dos arquivos PDF renomeados:') for arq in files: ajustado = arq.replace("%3A","-") print('\t'+unquote(ajustado)) Consequently the original code…
-
0
votes1
answer42
viewsQ: How do I resolve a problem of renaming ENCODED URL files?
How to troubleshoot this problem of renaming ENCODED URL files? When converting a list of URL ENCODED files through the following code from urllib.parse import unquote import os, shutil cwd =…
-
0
votes1
answer1320
viewsA: How to navigate a matrix in Matlab?
As the description of the problem became a bit confusing, it follows two possibilities of interpretation. Even elements or even lines of the matrix. %% %entrada matriz multidimensional matr = [[1 2…
-
1
votes0
answers87
viewsQ: What is an alternative to creating spreadsheets with random numbers in Python ? using CSV
When creating spreadsheets with random values in Python, I used a script containing the library openpyxl (see below). I want to increase the speed of creating random spreadsheets in python because…
pythonasked cbe-user-99263 121 -
0
votes1
answer123
viewsA: Error with xlswrite in Matlab 2016
I ran the same code with Matlab R2015a and Office 365 installed. The error message was a little different and without a quick fix. status = 0 message = message: 'The specified data range is invalid…
matlabanswered cbe-user-99263 121 -
1
votes0
answers236
viewsQ: Using Python to Extract Equations, Figures and Other Latex File Items
I’m on a personal project that involves leaving an article written in Latex as clean as possible for sending the translation. Aiming to increase my productivity, avoid problems of information…