ARAH MIZORI - MATLAB Central
photo

ARAH MIZORI


Last seen: meer dan 3 jaar ago Active since 2021

Followers: 0   Following: 0

Statistics

MATLAB AnswersFrom 08/21 to 03/25Use left and right arrows to move selectionFrom 08/21Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

8 Questions
0 Answers

RANK
103.520
of 297.560

REPUTATION
0

CONTRIBUTIONS
8 Questions
0 Answers

ANSWER ACCEPTANCE
75.0%

VOTES RECEIVED
0

RANK
 of 20.456

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 159.148

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 3

View badges

Feeds

View by

Question


How can I write a magic(5) matrix to a text file with special delimiters?
I want to a matrix in txt for with the delimeter %%%

meer dan 3 jaar ago | 1 answer | 0

1

answer

Question


How can I run this script and only create folders with files in it without having an additional file outside the folder?
clc clear close all % start timer start = tic; % input n and m n = input('\n How many folders would you like m...

meer dan 3 jaar ago | 1 answer | 0

1

answer

Question


I want to find the inverse of my function 'mag' and plot it as 'mag1'
clc clear close all subplot(2,1,1); theta = 0:0.01:2*pi; mag = sin(3*theta); polarplot(mag) title('Fan-Blade Polar Plot')...

meer dan 3 jaar ago | 1 answer | 0

1

answer

Question


How can I make a variable equal a script in Matlab
I want to make this script: c = 4500:30:7500; first = 0:150; second = 150:250; third = 250:325; x = 0.2*first; y = c...

meer dan 3 jaar ago | 0 answers | 0

0

answers

Question


How do I only display the 5 answers in the command window once?
function [SA]=equTriPrismSurfArea(s,h) SA = ((sqrt(3)./2) .* s.^2 + 3.*s.*h); end s = [1 2 3 4 5]; h = [1 2 3 4 5]; ...

meer dan 3 jaar ago | 1 answer | 0

1

answer

Question


How do I only result in 5 answers (I want the matrix to times 1 by 1 and 2 by 2 and 3 by 3 etc. not 1 by 1 and 1 by 2 and 1 by 3 etc.)
s = 1; s1 = input('Enter the number of columns : '); h = 1; h1 = input('Enter the number of columns : '); for p ...

meer dan 3 jaar ago | 0 answers | 0

0

answers

Question


Why do I receive Not enough input arguments?
function [SA]=equTriPrismSurfArea(s,h) SA=((sqrt(3)/2)*(s^2))+(3*s*h); s = 1; h = 1; for i = 1:5 ...

meer dan 3 jaar ago | 3 answers | 0

3

answers

Question


Why doesn't my script work? It comes back with Error: File: equTriPrismSurfArea.m Line: 6 Column: 1 This statement is not inside any function.
function [SA]=equTriPrismSurfArea(s,h) SA=((sqrt(3)/2)*(s^2))+(3*s*h); end s = [1 2 3 4 5]; h = [1 2 3 4 5]; for i...

meer dan 3 jaar ago | 1 answer | 0

1

answer