photo

Aylin

Last seen: 7日 前 2016 年からアクティブ

Followers: 0   Following: 0

Programming Languages:
Python, C++, C, MATLAB
Spoken Languages:
English, Hindi, Marathi
Pronouns:
She/her

統計

MATLAB Answers

0 質問
32 回答

ランク
743
of 300,753

評判
106

コントリビューション
0 質問
32 回答

回答採用率
0.00%

獲得投票数
22

ランク
 of 21,075

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 170,858

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • 3 Month Streak
  • Knowledgeable Level 3
  • First Review
  • Knowledgeable Level 2
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
Using TLSv1.2 with webread
For MATLAB R2019b and newer, webread natively supports TLS >= 1.1. For MATLAB R2019a and older, TLS 1.2 support can be enable...

1年以上 前 | 4

| 採用済み

回答済み
using datastore with trainNetwork
Hello Noam, maybe the trainNetwork inputs are in the wrong order? The datastore should be first, followed by the layers and the ...

3年弱 前 | 0

| 採用済み

回答済み
Resolve readChannelGroups out of Bounds when combining multiple .tdms files
Hello Eleanor, this is likely to be a bug in tdmsDatastore. I have forwarded this to the tdmsDatastore developers. As a workaro...

3年弱 前 | 1

| 採用済み

回答済み
imageDatastore for volumetric images
Hi Memo, The blockedImage object (in Image Processing Toolbox) has documentation that mentions volumes within images: A blocke...

3年弱 前 | 0

回答済み
how to crop images within a DataStore with labeled bounding boxes
Does BoxLabelDatastore (R2019b and newer) work for you? See: https://www.mathworks.com/help/vision/ref/boxlabeldatastore.html

3年弱 前 | 1

回答済み
combine the string and number
Hi, I wanted to second Walter's answer which will work best if you want to read the filenames as image data. However if you do ...

3年弱 前 | 1

回答済み
Training large images for Image Classification task by creating BlockedImageDatastore
Hello Zia, there's a couple of examples of using BlockedImageDatastore to train networks available here: link

3年弱 前 | 0

回答済み
Nonstandard input date format into readstruct function?
Thanks for reporting this. There is an undocumented "DetectTypes" parameter on readstruct. Enabling this will read all XML node...

約3年 前 | 0

回答済み
Training nework: Combined network is not partitionable but each datastore is partitionable
Hello Shen Zhao, This is a known limitation in the FileDatastore + combine workflow. Even though FileDatastore by itself is pa...

5年以上 前 | 2

| 採用済み

回答済み
Reshape error in trainNetwork with fileDatastore
> Therefore, I should save 1x21x1 in one mat file. Is that right? Hi Haoqing, yes, separating your observations into different ...

5年以上 前 | 2

| 採用済み

回答済み
Array of +1s and -1s: Want Pink and Blue for imagesc
Hi Emily, the colormap function might work for you: % Generate some sample data. data = 2 * randi([0 1], 10, 10) - 1; % Def...

6年以上 前 | 0

| 採用済み

回答済み
Read a certain amount of rows from a column of an excel file
Hi Rylan, as Fangjun and Adam have both commented, you can provide a range to xlsread. However if you have R2019a, I would als...

6年以上 前 | 0

回答済み
How to best store and work with timeseries datasets in Matlab?
Hi MSani, as Peter suggested you could use datastore to make it easier to work with large files and datasets that may not fit in...

6年以上 前 | 1

回答済み
How to move (and copy) specific csv files from multiple sub folders into a single folder
If you have a recent version of MATLAB, you could try using TabularTextDatastore which can make your code simpler (and possibly ...

6年以上 前 | 0

回答済み
How can i access .mat files, stored in an encrypted amazon S3 bucket via Matlab (API Key available)
Hi David, it might be easier to use FileDatastore with the load function to do this: % Set up S3 credentials. setenv('AWS_ACCE...

7年弱 前 | 1

| 採用済み

回答済み
Obtaining Histogram of Image Stored in Cell Array
This issue might be caused due to the difference between the |binLocations| output of the <https://www.mathworks.com/help/images...

8年以上 前 | 1

回答済み
How can I include a VB script in a Matlab code?
Hi Sriram, MATLAB has several external interfaces which could be used to call external scripts and DLLs: 1. If you want ...

8年以上 前 | 0

回答済み
Having trouble compiling importdata
From the <https://www.mathworks.com/matlabcentral/answers/43940-having-trouble-compiling-uigetfile-function previous MATLAB Answ...

8年以上 前 | 0

| 採用済み

回答済み
mex compilation error running fftw3 library
The "Undefined symbols for architecture..._mexFunction" error is usually caused by a missing |mexFunction| function. In C/C++...

8年以上 前 | 0

回答済み
How can I use my sensor data in the cloud on my computer?
The MATLAB Mobile connector can be used with a desktop MATLAB instance to gather data from a MATLAB mobile session: https://...

8年以上 前 | 0

回答済み
Problem in Interfacing MindWave- NeuroSky
As Walter mentioned, it is not possible to load a 32-bit shared library (DLL) into a 64-bit version of MATLAB using the |loadlib...

8年以上 前 | 0

回答済み
Manipulating multidimensional array cell elements
You can operate over arrays within a cell array using the |cellfun| function: A = cell(1, 9); ...

8年以上 前 | 0

回答済み
Why are map limit and frame limit not aligned when zooming in ?
Hello Guillaume, this may be occurring due to the 'Clipping' property on the axes object being set to 'on' by default. Try disab...

9年弱 前 | 0

| 採用済み

回答済み
Problem with copyfile/movefile, xlswrite and Excel 2013
Hello Michael, this may occur due to the multiple |xlswrite| commands that are being executed in a |for| loop. MATLAB may use a ...

9年弱 前 | 1

回答済み
"Your administrator has restricted your download access to this MathWorks product" why end user get this message, what can we do as administrator ?
Hello Elif, I am assuming that you are seeing this error while using the Add-On manager to include additional toolboxes. As a wo...

9年弱 前 | 1

回答済み
How do I wait for an appdesigner pushbutton press from a script
Hello Gary, You can use the |uiwait| function with the |uiresume| function instead of the |waitfor| function in order to pau...

9年弱 前 | 4

| 採用済み

回答済み
selecting the positive result
Hello Domenico, If you are trying to solve a polynomial equation, then you may want to use the |roots| function instead. How...

9年弱 前 | 0

回答済み
How to plug in one symbolic equation into another
Hello, The |subs| function can be used to "plug in" values for the C'(t) equation. In this answer, I use the Symbolic Ma...

9年弱 前 | 0

| 採用済み

回答済み
specifying a stride length in ncread
It looks like this issue is actually occurring in the underlying NetCDF C library that MATLAB uses. Here is a discussion on the ...

約9年 前 | 1

| 採用済み

回答済み
Create events/annotations on EEGLAB?
Hello Maanasi, I understand that you want to import ‘ |.edf.seizures| ’ files into MATLAB for processing by EEGLAB. Please r...

約9年 前 | 1

| 採用済み

さらに読み込む