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?

Réponses (2)

the cyclist
the cyclist le 20 Oct 2023

0 votes

  • 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 le 26 Mai 2026 à 6:07
Modifié(e) : Walter Roberson le 26 Mai 2026 à 10:41

0 votes

%% 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 commentaire

Walter Roberson
Walter Roberson le 26 Mai 2026 à 10:42
Modifié(e) : Walter Roberson le 26 Mai 2026 à 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.

Connectez-vous pour commenter.

Catégories

Produits

Version

R2023a

Question posée :

le 20 Oct 2023

Modifié(e) :

le 26 Mai 2026 à 10:42

Community Treasure Hunt

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

Start Hunting!

Translated by