how do i obtain matlab online(basic)?

11 Ansichten (letzte 30 Tage)
Vanshitha
Vanshitha am 20 Feb. 2025
Beantwortet: Sezim am 14 Mai 2025
I recently obtained a license for MATLAB online for an MOOC course i am taking.Now,my college is conducting MATLAB courses,and when i tried running a program,i was unable to get the desired output.Instead i received a message that i did not have the required toolbox installed in my system.I asked if this was because of the MOOC course license,but it seems like this is not the case.Having said so,what is the best course of action i can take?Is it possible to use MATLAB Online basic alongside MATLAB online?If not,what should i do?
  2 Kommentare
Mike Croucher
Mike Croucher am 20 Feb. 2025
Which toolbox?
Vanshitha
Vanshitha am 20 Feb. 2025

Symbolic Math Toolbox

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Cris LaPierre
Cris LaPierre am 20 Feb. 2025
No, your MOOC license will not cause a problem here. It sounds like you have not associated your account with your university's license. Note that your account must use your university issued email in order to associate with your university's license.
  3 Kommentare
Vanshitha
Vanshitha am 23 Feb. 2025

I am using university email Id for the MOOC and for college.The MOOC is working fine but I am unable to use it for college.Kindly guide me on this matter.Thank you

Cris LaPierre
Cris LaPierre am 23 Feb. 2025
I suspect you have not yet associated your account with your university's license (if it has one). We can't help you with that. Please work with whatever group at your university manages software licenses.

Melden Sie sich an, um zu kommentieren.


Sezim
Sezim am 14 Mai 2025
% Эйлер әдісі арқылы Коши есебін шешу
% Бастапқы мәндер
x0 = 0;
y0 = 1;
h = 0.1; % Қадам
xn = 1; % Соңғы x
% f(x, y) функциясын анықтаймыз
f = @(x, y) x + y;
% Векторлар
x = x0:h:xn;
y = zeros(1, length(x));
y(1) = y0;
% Эйлер әдісі
for i = 1:(length(x) - 1)
y(i + 1) = y(i) + h * f(x(i), y(i));
end
% Графикпен көрсету
plot(x, y, '-o')
title('Эйлер әдісі')
xlabel('x')
ylabel('y')
grid on

Kategorien

Mehr zu Manage Products finden Sie in Help Center und File Exchange

Produkte


Version

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by