![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/27008826_1658726831486_DEF.jpg)
Shivam
Followers: 0 Following: 0
Statistics
0 Questions
9 Answers
RANK
10 558
of 297 016
REPUTATION
4
CONTRIBUTIONS
0 Questions
9 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20 419
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 157 725
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
Fields in a Structure
You can fetch the fields of a structure S using fieldname this way. fields = fieldnames(S) It returns the field names of the s...
mer än 2 år ago | 0
How to read a file in series of files saved in a order.
You can sort files by sorting modification date. All you would need is: D = '.'; % folder path files = dir(fullfile(D,'*.dat...
mer än 2 år ago | 0
Creating a backwards compatable p-code file
Documentation mentions: The pcode algorithm was redesigned in MATLAB 7.5 (Release R2007b). You can run older P-files in any cur...
mer än 2 år ago | 0
| accepted
How do I use my MATLAB code for starting an online service?
If you are looking forward to use MATLAB in the cloud along with simulink, you can go through the following link and linked page...
mer än 2 år ago | 0
Interface MATALB with Raspberry Pi
I will say, you go through the following documentation and pages linked to it. You may find solution in it. https://www.mathwor...
mer än 2 år ago | 0
poly directional local line binary pattern
You can go through the following paper: https://ieeexplore.ieee.org/abstract/document/6675307
mer än 2 år ago | 0
I what to do my thesis paper on geographic adaptive fidelity(GAF) protocol, can anyone help me MATHLAB source code of GAF protocol?
You can go through the following paper: https://www.iosrjournals.org/iosr-jce/papers/Vol16-issue5/Version-4/O016548896.pdf
mer än 2 år ago | 0
How can I create a Delanay point in a cube?
To triangulate a 3D point cloud you need the BallPivoting algorithm: https://vgc.poly.edu/~csilva/papers/tvcg99.pdf
mer än 2 år ago | 0
Resizing a 3D image without using imresize3
You can use "for" loop for each 2D image, and than use imresize(): Im=zeros(N,N,N); I=zeros(n,n,n); for i=1:N I(:,:,i)=imres...
mer än 2 år ago | 0