Number of columns on line 2 of ASCII file [ ].m must be the same as previous lines.
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Here is my code:
figure;
t = linspace(0,2*pi,100);
plot(t,sin(t));
hold on;
plot(t,cos(t),'--');
xlabel('x');
ylabel('function value');
legend('sin(x)','cos(x)');
xlim([0 2*pi]);
ylim([-1.4 1.4])
I get the above message when using load [].m, while it runs well when copied to the workspace.
0 commentaires
Réponses (1)
Henry Giddens
le 18 Sep 2017
If you just want to run that code, which is contained in a script, just type the name of the .m file without the 'load' command
1 commentaire
Voir également
Catégories
En savoir plus sur Whos dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!