Noam
Self-employment
Followers: 0 Following: 0
Statistics
RANK
4,368
of 295,467
REPUTATION
12
CONTRIBUTIONS
7 Questions
5 Answers
ANSWER ACCEPTANCE
85.71%
VOTES RECEIVED
2
RANK
5,984 of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
10
ALL TIME DOWNLOADS
0
RANK
of 153,912
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
How to use trainNetwork with transform datastore with multiple outputs?
my code create a audioDataStore, transform it to yamnet features (mel spectrum) and try to train it. But i get the following e...
2 years ago | 1 answer | 0
1
answerQuestion
using datastore with trainNetwork
I'm trying to train mp3/wav files using yamnet, I've created an audioDataStore which load the files, then I transform it to get ...
2 years ago | 1 answer | 0
1
answersum of all the variables in workspace how to find?
clear all; x=10; y=2; z=3; allvariables = whos; sumOfVars = 0; for i = 1:length(allvariables) sumOfVars...
6 years ago | 0
| accepted
Question
How do I run a function every time the plot changed?
I know the function linkdata, which updates the plot anytime the data changes. I need a similar functionality (somehow the oppos...
6 years ago | 1 answer | 0
1
answerQuestion
Parfor performance are too good to be true
Code: function X z=ones(1000); tic parfor j = 1:200 for k = 1:200 z = z+1; end end; toc zz=ones(10...
9 years ago | 1 answer | 0
1
answerhow to split arrays into different ranges?
A = [2,8,3,30,4,50,100,200,4,80,500]; A(A>=0&A<10) A(A>=10&A<100) A(A>=100&A<1000)
9 years ago | 2
Please how can i normalize the column of a complex matrix SAY U= [2 + 2i, 3+i; 4+5i , 4 -9i]
U./abs(U)
9 years ago | 0
| accepted
how to change the digit after decimal
Try using format: >> format long >> ans ans = 1.222200000000000 1.222200000000000 >> forma...
9 years ago | 0
Question
how to use function handle
I have a function boop: function boop(A) disp(A) Now I want that whenever I move my mouse over a figure, the func...
9 years ago | 2 answers | 0
2
answersQuestion
Performance of non-preallocated array
I'm trying to understand the reason these two options are so differnet in performance: >> tic;z=[];for i = 1:1e5;z(end+1)=i...
9 years ago | 2 answers | 0
2
answersQuestion
Loading file multiple times
When I load a certain MAT file twice (different runs of the script) its look like the reading is much faster in the second time ...
11 years ago | 0 answers | 0