Community Profile

photo

Eamon Gekakis


Last seen: 8 months ago Active since 2022

Followers: 0   Following: 0

paying the cost to be the bo$$

Statistics

All
  • Introduction to MATLAB Master
  • Solver
  • Knowledgeable Level 1
  • First Answer
  • First Submission

View badges

Feeds

View by

Answered
How can I make .mat file for SVM with 85 images?
Try creating a structure and store the image data in a field you specify. Then, use the save function to save the structure as a...

2 years ago | 0

Answered
Generate different types of audio-noise
audiowrite might be a good solution here.

2 years ago | 0

Answered
3d plot plotting in 2d and 2d plot plotting in 3d.
Remove the holds from the code, you do not need to specify hold on/off if you are plotting two separate figures figure(1) plot...

2 years ago | 0

Answered
How to plot multiple Graphs with nearly similar name of ordinate arrays
It is NOT recommended to dynamically name variables, here is why That being said, this may help. In place of [ Eigenvalues i ],...

2 years ago | 0

Answered
Why is saveas() changing my image aspect ratio?
The exportgraphics function may be useful here, 'Resolution' is available as a name-value pair input argument.

2 years ago | 0

Answered
Save 2D double array to .npy file
You may not need to save as a .npy file, you can read a .mat in Python, or you can write to a .csv from Matlab using writematr...

2 years ago | 0

| accepted