Community Profile

photo

Meet Vora


Last seen: 4 Monate vor Aktiv seit 2021

Followers: 0   Following: 0

Statistiken

  • First Answer
  • Revival Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
How to find a structure point with two fields x and y and then find the distance between two points
clc; clear all; close all; point = struct('x',[],'y',[]); point(1).x = 5; point(1).y = 3; point(2).x = 4; point(2)....

mehr als 2 Jahre vor | 0

Beantwortet
Write a function that accepts a string cell array and classify sort in ascending order according to the alphanumeric order (this Implies that you should treat 'A' and 'a' as the same letter) ?
clear all; clc; name = {}; t = input('Enter the number of names you want:'); for i=1:t name{i} = input('Enter the name y...

mehr als 2 Jahre vor | 0