Animation on Matlab Graph

Hello everyone, I need your help for the following:
Make a program that draws an animation of the silhouette of the Millennium Falcon (star wars) that moves along the x axis.
Attached image of the plane and an example program
I hope some of you can help me.

Risposte (1)

Chunru
Chunru il 2 Giu 2021
clear
clc
img = imread('halcon milenario.png');
figure;
himg = imagesc([0 1], [0, 1], img);
xlim([0 10]);
ylim([-3 4]);
axis equal
for t=0:0.1:10
y=cos(pi*t);
himg.XData = t + [0 1];
himg.YData = y + [0 1];
xlim([0 10]);
ylim([-3 4]);
pause(0.05)
end

3 Commenti

can you helpme with the next code?
make a program in matlab that:
1 ask the user for the amount of data
2 that the user enter the data
3 that the program returns the data ordered from highest to lowest
4 that the program indicates if the greater number is even or odd
5 that the program indicates if the smaller number is odd or even
Chunru
Chunru il 5 Giu 2021
Try yourself first.
Steven Lord
Steven Lord il 11 Giu 2021
This doesn't sound like it's at all related to the original question, so you should ask it as a new question. But since this sounds like a homework assignment, you should show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty. If you do we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the MATLAB Onramp tutorial (https://www.mathworks.com/support/learn-with-matlab-tutorials.html) to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.

Accedi per commentare.

Categorie

Scopri di più su Just for fun in Centro assistenza e File Exchange

Prodotti

Release

R2020a

Richiesto:

il 2 Giu 2021

Commentato:

il 11 Giu 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by