Community Profile

photo

Fayyaz Ahmad


Last seen: 8 months ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
How to get an equation of spline interpolation for a set of data X and Y?
clc; clear all; close all; format short g x = linspace(0,2*pi,9); y = sin(x); spl = spline(x,y); bk = spl.breaks; c...

2 years ago | 0

Answered
how to rotate image by using pixel by pixel?
Please find the code. It will help you plot rotated photo pixel by pixel clc; clear; close all; x=imread('2.jpeg'); ...

3 years ago | 0

Answered
how to rotate image by using pixel by pixel?
% % Please find the required code % clc; clear; close all; x=imread('2.jpeg'); figure(1) subplot(2,1,1) image(x);...

4 years ago | 1