install MATLAB 2017b version

I have licence and I used it to install MATLAB 2023a. I installed GISMO through Adds on but this seemed to be problematic. I am working on seismic waveform cross-correlation arrays. I want know to install MATLAB 2017b version and reinstall GISMO, would you mind to guide me?

Answers (2)

the cyclist
the cyclist on 20 Oct 2023
  • Go to the Downloads page
  • On the left-hand side of the page, click on "Show More"
  • Click on R2017b
  • Follow the instructions
sumitro
sumitro on 26 May 2026 at 6:07
Edited: Walter Roberson on 26 May 2026 at 10:41
%% Experiment 1: Multi-Type Data Processing and Conversion
% Task: Process mixed data (numeric, text, logical) with type conversions
clear; clc; close all;
%% 1. Create a numeric vector representing student scores
scores = [85, 42, 78, 90, 55, 67, 88, 39, 92, 73];
%% 2. Create a string array representing student names
names = ["Alice", "Bob", "Carol", "David", "Eva", ...
"Frank", "Grace", "Henry", "Ivy", "Jack"];
%% 3. Generate a logical array to identify students with scores >= 60
isPassing = scores >= 60;
%% 4. Combine names and scores into a cell array
combinedCell = [names; num2cell(scores)];
%% 5. Convert the cell array into a numeric matrix where applicable
numericScores = cell2mat(combinedCell(2, :))';
numericMatrix = numericScores;
%% 6. Compute the vector norm of the score array
normValue = norm(scores);
normInterpretation = sprintf(['The Euclidean norm of the score vector is %.2f. ' ...
'This indicates the overall magnitude of scores.'], normValue);
%% 7. Filtered list of passing students
passingNames = names(isPassing);
passingScores = scores(isPassing);
%% Display all intermediate results
fprintf('==================== EXPERIMENT 1 RESULTS ====================\n\n');
% Numeric vector
fprintf('1. Numeric Vector (Scores):\n');
disp(scores);
% String array
fprintf('\n2. String Array (Names):\n');
disp(names);
% Logical array
fprintf('\n3. Logical Array (Passing Status, 1=Pass, 0=Fail):\n');
disp(isPassing);
% Cell array
fprintf('\n4. Combined Cell Array (Row1: Names, Row2: Scores):\n');
disp(combinedCell);
% Numeric matrix from cell array
fprintf('\n5. Numeric Matrix Extracted from Cell Array (Scores):\n');
disp(numericMatrix);
% Passing students list
fprintf('\n6. Filtered List of Passing Students (Score >= 60):\n');
for i = 1:length(passingNames)
fprintf(' %s : %d\n', passingNames(i), passingScores(i));
end
% Norm value
fprintf('\n7. Vector Norm of Scores:\n');
fprintf(' Norm Value = %.4f\n', normValue);
fprintf(' Interpretation: %s\n', normInterpretation);
fprintf('\n==================== END OF RESULTS ====================\n');
%% Additional Summary
fprintf('\n--- Additional Summary ---\n');
fprintf('Total Students: %d\n', length(scores));
fprintf('Number Passing: %d\n', sum(isPassing));
fprintf('Number Failing: %d\n', sum(~isPassing));
fprintf('Pass Rate: %.1f%%\n', 100*mean(isPassing));
fprintf('Mean Score: %.2f\n', mean(scores));
fprintf('Median Score: %.2f\n', median(scores));

1 Comment

Walter Roberson
Walter Roberson on 26 May 2026 at 10:42
Edited: Walter Roberson on 26 May 2026 at 10:42
I do not understand how running this code will result in any version of MATLAB being installed. Please explain how this code will result in R2017b being installed.

Sign in to comment.

Categories

Products

Release

R2023a

Asked:

on 20 Oct 2023

Edited:

on 26 May 2026 at 10:42

Community Treasure Hunt

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

Start Hunting!